Changeset 679 in tmcsimulator
- Timestamp:
- 09/26/2022 05:03:29 PM (4 years ago)
- Location:
- trunk/bin
- Files:
-
- 6 edited
-
CADclient.bat (modified) (1 diff)
-
postsession_logmerge.bat (modified) (2 diffs)
-
systemstart_dev_full_session.sh (modified) (3 diffs)
-
systemstart_dev_practice_session.sh (modified) (2 diffs)
-
systemstart_systest.bat (modified) (1 diff)
-
systemstart_systest.sh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/CADclient.bat
r384 r679 2 2 3 3 cd .. 4 java -Djava.util.logging.config.file=config/ cad_client_logging.properties -jar deploy/CADClient.jar4 java -Djava.util.logging.config.file=config/logging_cad_client.properties -jar deploy/CADClient.jar 5 5 6 6 -
trunk/bin/postsession_logmerge.bat
r675 r679 12 12 13 13 REM 2. Define a variable for the directory containing the data files 14 set dir="webapps\dynamicdata" 14 REM dir="webapps\dynamicdata" 15 set dir="w:\webapps\dynamicdata" 15 16 16 17 REM 3. Merge the unified log with cad details and evaluation ratings … … 22 23 REM 4. Next, launch the webserver and browse to localhost:8080/sessionlogdisplay.html 23 24 REM to show a nicely formatted version of the results. 24 "C:\Program Files \Mozilla Firefox\firefox.exe" localhost:80/sessionlogdisplay.html &25 25 "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" webapps.tmcsim/sessionlogdisplay.html & 26 REM "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" localhost:8080/sessionlogdisplay.html & -
trunk/bin/systemstart_dev_full_session.sh
r648 r679 1 1 #!/bin/sh 2 3 # Kill any process leftover from previous run 4 kill $(ps aux | grep "[p]ython -m CGIHTTPServer 8080" | awk '{print $2}') 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" 12 2 13 # Start the Simulator System with the full incident script 3 4 14 cd ../webapps 5 15 # Delete any existing CADcomments.log … … 10 20 sleep 1 11 21 cd .. 12 java - jar deploy/CADserver.jar &22 java -DCONFIG_DIR=config/devlinux -jar deploy/CADserver.jar & 13 23 sleep 10 14 24 java -jar deploy/SimManager.jar full_script_2016.xml & … … 21 31 22 32 sleep 10 23 java - jar deploy/CADclient.jar &33 java -DCONFIG_DIR=config/devlinux -jar deploy/CADclient.jar & 24 34 sleep 5 25 35 -
trunk/bin/systemstart_dev_practice_session.sh
r663 r679 1 #!/bin/sh 1 #!/bin/bash 2 3 # Kill any process leftover from previous run 4 kill $(ps aux | grep "[p]ython -m CGIHTTPServer 8080" | awk '{print $2}') 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" 12 2 13 # Start the Simulator System with the practice script 3 14 cd ../webapps … … 5 16 sleep 1 6 17 cd .. 7 java -D PROP_FILE=cad_server_practice.properties -jar deploy/CADserver.jar &18 java -DCONFIG_DIR=config/devlinux -DPROP_FILE=cad_server_practice.properties -jar deploy/CADserver.jar & 8 19 sleep 7 20 python deploy/unifiedlogger.zip & 21 22 sleep 2 9 23 java -jar deploy/SimManager.jar practice_script_2016.xml & 10 24 11 # Start Unified Logger Service12 python deploy/unifiedlogger.zip &13 sleep 514 25 # Start a browser and run the web applications 15 26 firefox localhost:8080/einotebook localhost:8080/cptms localhost:8080/unifiedlogmonitor.html & -
trunk/bin/systemstart_systest.bat
r669 r679 27 27 28 28 REM Launch a browser with our webapps 29 "C:\Program Files \Mozilla Firefox\firefox.exe" localhost:80/einotebook localhost:80/cptms localhost:80/unifiedlogmonitor.html29 "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" localhost:80/einotebook localhost:80/cptms localhost:80/unifiedlogmonitor.html -
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.
