diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-08 22:28:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-08 22:28:19 +0000 |
commit | 78b4fc15bbd79ff3281c5595574ef88d6b73c5fe (patch) | |
tree | 78065778ca887550ec4c4c5fb1412434c7ec0940 | |
parent | Add #line support for CBE. (diff) | |
download | llvm-project-78b4fc15bbd79ff3281c5595574ef88d6b73c5fe.tar.gz llvm-project-78b4fc15bbd79ff3281c5595574ef88d6b73c5fe.tar.bz2 llvm-project-78b4fc15bbd79ff3281c5595574ef88d6b73c5fe.zip |
Pass -emit-llvm automatically to %llvmgcc and %llvmg++ to fix regression
tests with the new f.e.
llvm-svn: 26622
-rwxr-xr-x | llvm/test/TestRunner.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/TestRunner.sh b/llvm/test/TestRunner.sh index 58d8cc522426..e595527b8b3a 100755 --- a/llvm/test/TestRunner.sh +++ b/llvm/test/TestRunner.sh @@ -30,7 +30,7 @@ fi ulimit -t 40 SCRIPT=$OUTPUT.script -grep 'RUN:' $FILENAME | sed "s|^.*RUN:\(.*\)$|\1|g;s|%s|$SUBST|g;s|%llvmgcc|llvm-gcc|g;s|%llvmgxx|llvm-g++|g;s|%prcontext|prcontext.tcl|g" > $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 /bin/sh $SCRIPT > $OUTPUT 2>&1 || ( |