diff options
Diffstat (limited to 'netcon/docker-test/two_party_test.sh')
| -rwxr-xr-x | netcon/docker-test/two_party_test.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/netcon/docker-test/two_party_test.sh b/netcon/docker-test/two_party_test.sh new file mode 100755 index 00000000..164b0b2e --- /dev/null +++ b/netcon/docker-test/two_party_test.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +# Runs test image and monitor image as daemons + +test_name=${PWD##*/} +echo 'Building dockerfiles for test: ' "$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) + +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 |
