aboutsummaryrefslogtreecommitdiffstats
path: root/ttcn3-gbproxy-test/docker-entrypoint.sh
blob: cfdd8983e4c3baa2c80f01b3c0811619cb351a3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set -eou pipefail

if [[ -n ${WAIT_FOR_NETDEV:-} ]]; then
	/usr/bin/pipework --wait -i ${WAIT_FOR_NETDEV}
fi

cd /data && /osmo-ttcn3-hacks/start-testsuite.sh /osmo-ttcn3-hacks/gbproxy/GBProxy_Tests; \
exit_code=$?

/osmo-ttcn3-hacks/log_merge.sh GBProxy_Tests --rm

exit $exit_code