From 7a2e562396c5a605242d69d160f5a0b7ab02fbe6 Mon Sep 17 00:00:00 2001 From: Ilan Peer Date: Sun, 9 Aug 2015 16:00:41 +0300 Subject: [PATCH] tests: Properly pass the num of channels to start.sh The number of channels was not properly passed from the run-all.sh script to the start.sh script. Fix it. Signed-off-by: Ilan Peer --- tests/hwsim/run-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hwsim/run-all.sh b/tests/hwsim/run-all.sh index 9bdb7b17e..5cf56a910 100755 --- a/tests/hwsim/run-all.sh +++ b/tests/hwsim/run-all.sh @@ -108,7 +108,7 @@ if [ ! -z "$BUILD" ]; then fi fi -if ! ./start.sh $VALGRIND $TRACE $NUM_CH; then +if ! ./start.sh $VALGRIND $TRACE channels=$NUM_CH; then if ! [ -z "$LOGBASEDIR" ] ; then echo "Could not start test environment" > $LOGDIR/run fi