]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Remove parallel-vm.sh
authorJouni Malinen <j@w1.fi>
Sat, 8 Dec 2018 13:35:47 +0000 (15:35 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 8 Dec 2018 13:35:47 +0000 (15:35 +0200)
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 <j@w1.fi>
tests/hwsim/vm/parallel-vm.sh [deleted file]

diff --git a/tests/hwsim/vm/parallel-vm.sh b/tests/hwsim/vm/parallel-vm.sh
deleted file mode 100755 (executable)
index f9e22d9..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-cd "$(dirname $0)"
-
-NUM=$1
-if [ -z "$NUM" ]; then
-    echo "usage: $0 <num servers> [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