mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Make it possible to run this from within subdirectories of llvm/test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36052 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c92e6a690c
commit
4142579814
@ -12,4 +12,21 @@
|
||||
# %llvmgxx - llvm-g++ command
|
||||
# %prcontext - prcontext.tcl script
|
||||
#
|
||||
make check-one TESTONE=$1
|
||||
TESTFILE=$1
|
||||
if test `dirname $TESTFILE` == . ; then
|
||||
TESTPATH=`pwd`
|
||||
SUBDIR=""
|
||||
while test `basename $TESTPATH` != "test" -a ! -z "$TESTPATH" ; do
|
||||
tmp=`basename $TESTPATH`
|
||||
SUBDIR="$tmp/$SUBDIR"
|
||||
TESTPATH=`dirname $TESTPATH`
|
||||
done
|
||||
if test -d "$TESTPATH" ; then
|
||||
cd $TESTPATH
|
||||
make check-one TESTONE="$SUBDIR$TESTFILE"
|
||||
else
|
||||
echo "Can't find llvm/test directory in " `pwd`
|
||||
fi
|
||||
else
|
||||
make check-one TESTONE=$TESTFILE
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user