Allow lines that have \ and end in \ to be recognized as ending in \
llvm-svn: 36074
This commit is contained in:
parent
6c38d94201
commit
3d18d852d2
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue