Skip to content
Snippets Groups Projects
Commit a9996dfc authored by Josh Brooks's avatar Josh Brooks
Browse files

Fix pathing issues

parent 69aa7672
No related branches found
No related tags found
1 merge request!4Release
...@@ -96,15 +96,14 @@ if [ ! -s rid.txt ]; then ...@@ -96,15 +96,14 @@ if [ ! -s rid.txt ]; then
fi fi
# Kill the last server # Kill the last server
echo "KILLING SERVER 0" echo "KILLING SERVER 0 EARLY"
echo $PID_SERVER_KILLED
kill -2 $PID_SERVER_KILLED kill -2 $PID_SERVER_KILLED
# Wait for node to handle kill signal # Wait for node to handle kill signal
sleep 30 sleep 30
echo "CHECKING THAT SERVER 0 WAS KILLED PROPERLY" echo "CHECKING THAT SERVER 0 WAS KILLED PROPERLY"
cat $SERVERLOGS/server-0.log | grep "Round completed, closing!" > serverClose.txt || true cat results/server-1.log | grep "Round completed, closing!" > serverClose.txt || true
if [ -s serverClose.txt ]; then if [ -s serverClose.txt ]; then
echo "SERVER 0 CLOSED SUCCESSFULLY" echo "SERVER 0 CLOSED SUCCESSFULLY"
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment