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 | 727842e9d76680a49616083fed0e812ae209aff8 (patch) | |
tree | 022ce83bac251c30f6439d30d8e2c2098e689943 /test/lib | |
parent | cada245d06959831b90f8c29f92e77beda4b71cb (diff) | |
download | external_llvm-727842e9d76680a49616083fed0e812ae209aff8.zip external_llvm-727842e9d76680a49616083fed0e812ae209aff8.tar.gz external_llvm-727842e9d76680a49616083fed0e812ae209aff8.tar.bz2 |
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.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp index 2116b7a..05c9107 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 |