Changeset 679 in tmcsimulator for trunk/bin/systemstart_systest.sh
- Timestamp:
- 09/26/2022 05:03:29 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/bin/systemstart_systest.sh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/systemstart_systest.sh
r674 r679 1 #!/bin/ sh1 #!/bin/bash 2 2 3 3 # Kill any process leftover from previous run 4 4 kill $(ps aux | grep "[p]ython -m CGIHTTPServer 8080" | awk '{print $2}') 5 5 kill $(ps aux | grep "[p]ython deploy/unifiedlogger.zip" | awk '{print $2}') 6 7 # Get path to this script 8 # $0 contains path to the script file, even if launched from file manager 9 SCRIPT_PATH=$(dirname "$(readlink -f "$0")") 10 # CD to the script folder 11 cd "$SCRIPT_PATH" 6 12 7 13 # Start the Simulator System with the system test script … … 10 16 sleep 1 11 17 cd .. 12 java -D PROP_FILE=cad_server_systest.properties -jar deploy/CADserver.jar &18 java -DCONFIG_DIR=config/devlinux -DPROP_FILE=cad_server_systest.properties -jar deploy/CADserver.jar & 13 19 sleep 7 14 20 python deploy/unifiedlogger.zip & 21 15 22 sleep 2 16 23 java -jar deploy/SimManager.jar system_test_script.xml & … … 18 25 # Start a browser and run the web applications 19 26 firefox localhost:8080/einotebook localhost:8080/cptms localhost:8080/unifiedlogmonitor.html & 27
Note: See TracChangeset
for help on using the changeset viewer.
