From: Jouni Malinen Date: Sat, 8 Dec 2018 13:35:47 +0000 (+0200) Subject: tests: Remove parallel-vm.sh X-Git-Tag: hostap_2_8~801 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a80672e2287673708e9730bcbfb6af573c77c03;p=thirdparty%2Fhostap.git tests: Remove parallel-vm.sh parallel-vm.py has obsoleted this a long time ago and there is no need to maintain two scripts for doing more or less the same thing. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/vm/parallel-vm.sh b/tests/hwsim/vm/parallel-vm.sh deleted file mode 100755 index f9e22d95b..000000000 --- a/tests/hwsim/vm/parallel-vm.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -cd "$(dirname $0)" - -NUM=$1 -if [ -z "$NUM" ]; then - echo "usage: $0 [params..]" - exit 1 -fi -shift - -if [ -n "$HWSIM_TEST_LOG_DIR" ] ; then - LOGS="$HWSIM_TEST_LOG_DIR" -else - LOGS=/tmp/hwsim-test-logs -fi -mkdir -p $LOGS -DATE=$(date +%s) - -for i in `seq 1 $NUM`; do - printf "\rStarting virtual machine $i/$NUM" - ./vm-run.sh --timestamp $DATE --ext srv.$i --split $i/$NUM $* >> $LOGS/parallel-$DATE.srv.$i 2>&1 & -done -echo - -echo "Waiting for virtual machines to complete testing" -count=$NUM -for i in `seq 1 $NUM`; do - printf "\r$count VM(s) remaining " - wait -n - count=$((count-1)) -done -printf "\rTesting completed " -echo - -echo -n "PASS count: " -grep ^PASS $LOGS/parallel-$DATE.srv.* | wc -l -cat $LOGS/parallel-$DATE.srv.* | grep FAIL | sort