Megatest

runsuite.sh at [c196e891d9]
Login

File tests/fdktestqa/testqa/runsuite.sh artifact e9bfa91f76 part of check-in c196e891d9


#!/bin/bash

(cd ../../..;make && make install) || exit 1

for i in a b c d e f;do
  # g h i j k l m n o p q r s t u v w x y z;do
  megatest -runtests % -target a/b :runname $i &
done

echo "" > num-running.log
while true; do
  foo=`megatest -list-runs % | grep RUNNING | wc -l`
  echo "Num running: $foo"
  echo $foo >> num-running.log
done