Warning: Can't use blame annotator:
svn blame failed on trunk/bin/systemstart_systest.sh: ("Can't find a temporary directory: Internal error", 20014)

source: tmcsimulator/trunk/bin/systemstart_systest.sh @ 674

Revision 674, 653 bytes checked in by jdalbey, 4 years ago (diff)

Add resetlogs_dev.sh postsession_logmerge.bash

  • Property svn:executable set to *
RevLine 
1#!/bin/sh
2
3# Kill any process leftover from previous run
4kill $(ps  aux | grep "[p]ython -m CGIHTTPServer 8080" | awk '{print $2}')
5kill $(ps  aux | grep "[p]ython deploy/unifiedlogger.zip" | awk '{print $2}')
6
7# Start the Simulator System with the system test script
8cd ../webapps
9python -m CGIHTTPServer 8080 &
10sleep 1
11cd ..
12java -DPROP_FILE=cad_server_systest.properties -jar deploy/CADserver.jar &
13sleep 7
14python deploy/unifiedlogger.zip &
15sleep 2
16java -jar deploy/SimManager.jar system_test_script.xml &
17
18# Start a browser and run the web applications
19firefox localhost:8080/einotebook  localhost:8080/cptms localhost:8080/unifiedlogmonitor.html &
Note: See TracBrowser for help on using the repository browser.