diff options
Diffstat (limited to 'netcon/docker-test/_two_party_test.sh')
-rwxr-xr-x | netcon/docker-test/_two_party_test.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/netcon/docker-test/_two_party_test.sh b/netcon/docker-test/_two_party_test.sh index 164b0b2e..8fa3b3eb 100755 --- a/netcon/docker-test/_two_party_test.sh +++ b/netcon/docker-test/_two_party_test.sh @@ -1,12 +1,9 @@ #!/bin/bash # Runs test image and monitor image as daemons - test_name=${PWD##*/} -echo 'Building dockerfiles for test: ' "$test_name" +echo 'Starting containers for: ' "$test_name" touch "$test_name".name - -# Start netcon container to be tested test_container=$(docker run -d -it -v $PWD/../../_results:/opt/results --device=/dev/net/tun "$test_name":latest) monitor_container=$(docker run -d -it -v $PWD/../../_results:/opt/results --device=/dev/net/tun "$test_name"_monitor:latest) @@ -14,4 +11,6 @@ echo "waiting $netcon_test_wait_time for test to complete." sleep $netcon_test_wait_time docker stop $(docker ps -a -q) docker rm $test_container -docker rm $monitor_container
\ No newline at end of file +docker rm $monitor_container + +rm -f *.name
\ No newline at end of file |