Skip to content

Commit

Permalink
Clean up after end-to-end tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcameron committed Feb 15, 2024
1 parent 71dc089 commit 5e7012f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sh/test-e2e-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ for i in {1..8}; do
done
date

# Delete left-over zombie server process
procs=`netstat -tulpn |& grep 8080` || true
proc=`echo $procs | sed -r 's/.* ([0-9]+)\/node$/\1/g'`
if [[ ! -z "$proc" ]]
then
echo "Deleting zombie node Bhima process $proc"
kill -9 $proc || true
fi

# Show summary of results
./sh/test-show-results.sh

Expand Down

0 comments on commit 5e7012f

Please sign in to comment.