diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /vo/votools/tests/zztest.csh | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'vo/votools/tests/zztest.csh')
-rwxr-xr-x | vo/votools/tests/zztest.csh | 18 |
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 |