From 8b07470465a08a2d1e4670f392c1ae03e14045f1 Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Wed, 28 Nov 2007 04:57:00 +0000 Subject: 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 --- test/lib/llvm.exp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/lib') 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 -- cgit v1.1