aboutsummaryrefslogtreecommitdiff
path: root/vo/votools/tests/zztest.csh
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /vo/votools/tests/zztest.csh
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'vo/votools/tests/zztest.csh')
-rwxr-xr-xvo/votools/tests/zztest.csh18
1 files changed, 18 insertions, 0 deletions
diff --git a/vo/votools/tests/zztest.csh b/vo/votools/tests/zztest.csh
new file mode 100755
index 00000000..146f6b9f
--- /dev/null
+++ b/vo/votools/tests/zztest.csh
@@ -0,0 +1,18 @@
+#!/bin/csh -f
+
+set n = 0
+echo > /tmp/z/zzlist
+foreach i (`cat /tmp/_im.s`)
+ echo $n " " $i
+
+ echo "b xerror_" > /tmp/c
+ echo "b zpanic_" >> /tmp/c
+ echo "run vodata resources='"$i"' @zz.dpar" >> /tmp/c
+ echo "thread apply all bt" >> /tmp/c
+ echo "quit" >> /tmp/c
+
+ echo $n " " $i >> /tmp/z/zzlist
+ gdb -x /tmp/c ./xx_votools.e >& /tmp/z/$n.out
+
+ set n = `expr $n + 1`
+end