blob: 7b74944fc2363858594e0649c600bfd5eca41d7f [file] [log] [blame]
plars122242c2001-06-27 20:26:37 +00001#!/bin/sh
2export LTPROOT=${PWD}
3echo $LTPROOT
4
5TMP="/tmp/runalltests-$$"
6mkdir ${TMP}
7cd ${TMP}
8
9RT=${LTPROOT}/ltctests/runtest
10
11export PATH="${PATH}:${LTPROOT}/doio:${LTPROOT}/tests:${LTPROOT}/ltctests/bin"
12export TCtmp=${TMP}
plars9c9c9f02001-08-01 17:21:58 +000013cat ${RT}/ipc ${RT}/pth_str ${RT}/mem ${RT}/files ${RT}/fs ${RT}/ade > ${TMP}/ltctests
plars122242c2001-06-27 20:26:37 +000014
15${LTPROOT}/pan/pan -e -S -a $$ -n $$ -f ${TMP}/ltctests -l /tmp/ltc.log
16if [ $? -eq "0" ]; then
17 echo pan reported PASS
18else
19 echo pan reported FAIL
20fi
21
22
23rm -rf ${TMP}