2002-02-01 05:24:47 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2007-04-26 05:59:24 +02:00
|
|
|
# TestRunner.sh - This script is used to run the deja-gnu tests exactly like
|
|
|
|
# deja-gnu does, by executing the Tcl script specified in the test case's
|
|
|
|
# RUN: lines. This is made possible by a simple make target supported by the
|
|
|
|
# test/Makefile. All this script does is invoke that make target.
|
2002-02-01 05:24:47 +01:00
|
|
|
#
|
2007-04-26 05:59:24 +02:00
|
|
|
# Usage:
|
|
|
|
# TestRunner.sh {script_names}
|
2002-02-01 05:24:47 +01:00
|
|
|
#
|
2007-04-26 05:59:24 +02:00
|
|
|
# This script is typically used by cd'ing to a test directory and then
|
|
|
|
# running TestRunner.sh with a list of test file names you want to run.
|
2003-05-14 20:39:57 +02:00
|
|
|
#
|
2007-05-16 19:56:56 +02:00
|
|
|
TESTPATH=`pwd`
|
|
|
|
SUBDIR=""
|
2008-07-28 20:41:03 +02:00
|
|
|
if test `dirname $1` = "." ; then
|
2007-05-18 04:06:03 +02:00
|
|
|
while test `basename $TESTPATH` != "test" -a ! -z "$TESTPATH" ; do
|
|
|
|
tmp=`basename $TESTPATH`
|
|
|
|
SUBDIR="$tmp/$SUBDIR"
|
|
|
|
TESTPATH=`dirname $TESTPATH`
|
|
|
|
done
|
|
|
|
fi
|
2007-05-16 19:56:56 +02:00
|
|
|
|
2007-04-26 05:59:24 +02:00
|
|
|
for TESTFILE in "$@" ; do
|
2008-07-28 20:41:03 +02:00
|
|
|
if test `dirname $TESTFILE` = . ; then
|
2007-04-26 05:59:24 +02:00
|
|
|
if test -d "$TESTPATH" ; then
|
|
|
|
cd $TESTPATH
|
|
|
|
make check-one TESTONE="$SUBDIR$TESTFILE"
|
2007-05-16 19:56:56 +02:00
|
|
|
cd $PWD
|
2007-04-26 05:59:24 +02:00
|
|
|
else
|
|
|
|
echo "Can't find llvm/test directory in " `pwd`
|
|
|
|
fi
|
2007-04-15 08:47:49 +02:00
|
|
|
else
|
2007-04-26 05:59:24 +02:00
|
|
|
make check-one TESTONE=$TESTFILE
|
2007-04-15 08:47:49 +02:00
|
|
|
fi
|
2007-04-26 05:59:24 +02:00
|
|
|
done
|