diff options
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 |