aboutsummaryrefslogtreecommitdiffstats
path: root/docker/nfvbench-entrypoint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/nfvbench-entrypoint.sh')
-rwxr-xr-xdocker/nfvbench-entrypoint.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/docker/nfvbench-entrypoint.sh b/docker/nfvbench-entrypoint.sh
index a7195a3..812816d 100755
--- a/docker/nfvbench-entrypoint.sh
+++ b/docker/nfvbench-entrypoint.sh
@@ -13,9 +13,15 @@
# License for the specific language governing permissions and limitations
# under the License.
#
-
-if [ -z "$1" ] || [ $1 != 'start_rest_server' ]; then
+if [ -z "$1" ] || ([ $1 != 'start_rest_server' ] && [ $1 != 'run_tests' ]); then
tail -f /dev/null
+elif [ $1 == 'run_tests' ]; then
+ PARAMS=""
+ for var in "${@:2}"
+ do
+ PARAMS+="$var "
+ done
+ eval "run_tests $PARAMS"
else
PARAMS="--server"
if [ -n "$HOST" ]; then