diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 18:38:42 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 18:38:42 +0000 |
commit | 3d18d852d2d5f50301ab7254459d59829df6a84d (patch) | |
tree | fe0a2c6218d15a2c040bfeb2503b8b2ab23e4279 /llvm/test/lib | |
parent | 6c38d9420100106870e53f03dba7ade77ab62f06 (diff) | |
download | bcm5719-llvm-3d18d852d2d5f50301ab7254459d59829df6a84d.tar.gz bcm5719-llvm-3d18d852d2d5f50301ab7254459d59829df6a84d.zip |
Allow lines that have \ and end in \ to be recognized as ending in \
llvm-svn: 36074
Diffstat (limited to 'llvm/test/lib')
-rw-r--r-- | llvm/test/lib/llvm.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/lib/llvm.exp b/llvm/test/lib/llvm.exp index 3002d11bd43..1655547cde5 100644 --- a/llvm/test/lib/llvm.exp +++ b/llvm/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 |