From: Reid Spencer Date: Sun, 15 Apr 2007 18:38:42 +0000 (+0000) Subject: Allow lines that have \ and end in \ to be recognized as ending in \ X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=601e845d6088dc9115032b73404feeb4279abf77;p=oota-llvm.git Allow lines that have \ and end in \ to be recognized as ending in \ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36074 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp index 3002d11bd43..1655547cde5 100644 --- a/test/lib/llvm.exp +++ b/test/lib/llvm.exp @@ -113,7 +113,7 @@ proc RunLLVMTests { test_source_files } { break # if the line is continued, concatente and continue the loop - } elseif {[regexp {RUN: *([^\\]+)(\\)$} $line match oneline suffix]} { + } elseif {[regexp {RUN: *(.+)(\\)$} $line match oneline suffix]} { set runline "$runline$oneline " # if its a terminating RUN: line then do substitution on the whole line