diff options
author | fmenguy <francoisregis.menguy@orange.com> | 2020-02-11 11:07:52 +0100 |
---|---|---|
committer | fmenguy <francoisregis.menguy@orange.com> | 2020-04-07 18:21:52 +0200 |
commit | ae6e172471fef8bef60d497eedaf199966ffb799 (patch) | |
tree | 3ba93c7614b028ab3c3225c502eeca3885d56af7 /docker/nfvbench-entrypoint.sh | |
parent | ce2525c2a621af3d20fc58f03a8f88d29e0e3617 (diff) |
NFVBENCH-160 xtesting integration4.2.2.2
Change-Id: Id600a1277059e84bc2d46fa20294fb22729f9c1f
Signed-off-by: fmenguy <francoisregis.menguy@orange.com>
Diffstat (limited to 'docker/nfvbench-entrypoint.sh')
-rwxr-xr-x | docker/nfvbench-entrypoint.sh | 10 |
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 |