File is no longer needed in new structure.
diff --git a/ltctests.sh b/ltctests.sh
deleted file mode 100755
index 7b74944..0000000
--- a/ltctests.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-export LTPROOT=${PWD}
-echo $LTPROOT
-
-TMP="/tmp/runalltests-$$"
-mkdir ${TMP}
-cd ${TMP}
-
-RT=${LTPROOT}/ltctests/runtest
-
-export PATH="${PATH}:${LTPROOT}/doio:${LTPROOT}/tests:${LTPROOT}/ltctests/bin"
-export TCtmp=${TMP}
-cat ${RT}/ipc ${RT}/pth_str ${RT}/mem ${RT}/files ${RT}/fs ${RT}/ade > ${TMP}/ltctests
-
-${LTPROOT}/pan/pan -e -S -a $$ -n $$ -f ${TMP}/ltctests -l /tmp/ltc.log
-if [ $? -eq "0" ]; then
-  echo pan reported PASS
-else
-  echo pan reported FAIL
-fi
-
-
-rm -rf ${TMP}