From 5ec9fa1a30f94329c03302f6da657824df2f10fb Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Fri, 7 Feb 2020 10:09:39 +0100 Subject: [PATCH] TT#72700 bench.sh: fix skip config option If enabled, run_tests.sh should have -C option too Change-Id: I9a7a03295831462d62a6645bd5bccf587e0a2b01 --- bench.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bench.sh b/bench.sh index dbbf22eb..8bfab83f 100755 --- a/bench.sh +++ b/bench.sh @@ -28,7 +28,7 @@ if [ "${PROFILE}" != "CE" ] && [ "${PROFILE}" != "PRO" ]; then fi NUM=${1:-20} -RUN_OPS=(-c -r -p"${PROFILE}") +RUN_OPS=(-C -c -r -p"${PROFILE}") # clean previous rm -rf log_* result_* @@ -41,7 +41,6 @@ if ! "${SKIP_CONFIG}" ; then echo "add configuration for tests" ./bin/config_debug.pl on ngcpcfg apply 'k-c-t on' - RUN_OPS+=(-C) fi echo "$(date) - Starting $NUM tests"