diff options
author | Tanya Lattner <tonic@nondot.org> | 2007-11-28 04:57:00 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2007-11-28 04:57:00 +0000 |
commit | 8f342f8ef350af778bfa4c5d07eb4615dcd76af0 (patch) | |
tree | b77175ea3fa5ab9ce347233bd6f667c0523c29b5 /llvm/test/lib | |
parent | d0d8d4e3b9fdce475444f4e9c39c5561733560ea (diff) | |
download | bcm5719-llvm-8f342f8ef350af778bfa4c5d07eb4615dcd76af0.tar.gz bcm5719-llvm-8f342f8ef350af778bfa4c5d07eb4615dcd76af0.zip |
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)
llvm-svn: 44389
Diffstat (limited to 'llvm/test/lib')
-rw-r--r-- | llvm/test/lib/llvm.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/lib/llvm.exp b/llvm/test/lib/llvm.exp index 2116b7a92c1..05c910771ad 100644 --- a/llvm/test/lib/llvm.exp +++ b/llvm/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 |