aboutsummaryrefslogtreecommitdiffstats
path: root/run-some-sgp-tests
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@fh-muenster.de>2016-08-27 11:04:43 +0200
committerMichael Tuexen <tuexen@fh-muenster.de>2016-08-27 11:04:43 +0200
commitbae38aad778c574f400102f2cbb7302f9167a561 (patch)
tree78d2dabe18d200df03e9df30125fa85794a8ee13 /run-some-sgp-tests
parent8c4dad4c86dd56fbe0b3e7e1635b9c9fc39f1fcd (diff)
Import to git.
Diffstat (limited to 'run-some-sgp-tests')
-rwxr-xr-xrun-some-sgp-tests20
1 files changed, 20 insertions, 0 deletions
diff --git a/run-some-sgp-tests b/run-some-sgp-tests
new file mode 100755
index 0000000..050f4ff
--- /dev/null
+++ b/run-some-sgp-tests
@@ -0,0 +1,20 @@
+#!/bin/tcsh
+
+set timeout = 10
+set sleeptime = 1
+
+set testcases = (m3ua-sgp-aspsm-v-003 \
+ m3ua-sgp-aspsm-i-001 \
+ m3ua-sgp-aspsm-i-002 \
+ m3ua-sgp-aspsm-i-003 \
+ m3ua-sgp-aspsm-o-001 \
+ m3ua-sgp-asptm-v-003 \
+ m3ua-sgp-asptm-v-008 \
+ m3ua-sgp-asptm-v-011 \
+ m3ua-sgp-asptm-i-004 \
+ m3ua-sgp-asptm-o-001)
+
+foreach testcase ($testcases)
+ (runm3uatest -t $timeout $testcase > /dev/tty) >& /dev/null
+ sleep $sleeptime
+end