summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2007-11-28 04:57:00 +0000
committerTanya Lattner <tonic@nondot.org>2007-11-28 04:57:00 +0000
commit727842e9d76680a49616083fed0e812ae209aff8 (patch)
tree022ce83bac251c30f6439d30d8e2c2098e689943 /test/lib
parentcada245d06959831b90f8c29f92e77beda4b71cb (diff)
downloadllvm-727842e9d76680a49616083fed0e812ae209aff8.tar.gz
llvm-727842e9d76680a49616083fed0e812ae209aff8.tar.bz2
llvm-727842e9d76680a49616083fed0e812ae209aff8.tar.xz
Fix bug in regression tests that ignored stderr output in RUN lines. Updated tests and fixed broken run lines.
XFAILed 3 arm regressions (will file bugs) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44389 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/llvm.exp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp
index 2116b7a92c..05c910771a 100644
--- a/test/lib/llvm.exp
+++ b/test/lib/llvm.exp
@@ -126,8 +126,8 @@ proc RunLLVMTests { test_source_files } {
set runline "$runline$oneline "
# if its a terminating RUN: line then do substitution on the whole line
- # and then save the line.
- } elseif {[regexp {RUN: *([^&]+)(&&)?} $line match oneline suffix]} {
+ # and then save the line.
+ } elseif {[regexp {RUN: *(.+)$} $line match oneline suffix]} {
set runline "$runline$oneline"
set runline [ substitute $runline $test $tmpFile ]
set lines($numLines) $runline