verify that tests contain RUN lines.

llvm-svn: 44915
This commit is contained in:
Chris Lattner 2007-12-12 06:19:22 +00:00
parent 3115ba39e8
commit e01fc281c3
1 changed files with 7 additions and 1 deletions

View File

@ -33,6 +33,12 @@ fi
ulimit -t 40
# Verify the script contains a run line.
grep -q 'RUN:' $FILENAME || (
echo "******************** TEST '$TESTNAME' HAS NO RUN LINE! ********************"
exit 1
)
SCRIPT=$OUTPUT.script
grep 'RUN:' $FILENAME | sed "s|^.*RUN:\(.*\)$|\1|g;s|%s|$SUBST|g;s|%llvmgcc|llvm-gcc -emit-llvm|g;s|%llvmgxx|llvm-g++ -emit-llvm|g;s|%prcontext|prcontext.tcl|g" > $SCRIPT