[llvm-commits] CVS: llvm/test/lib/llvm.exp
Reid Spencer
reid at x10sys.com
Sun Apr 15 11:39:06 PDT 2007
Changes in directory llvm/test/lib:
llvm.exp updated: 1.10 -> 1.11
---
Log message:
Allow lines that have \ and end in \ to be recognized as ending in \
---
Diffs of the changes: (+1 -1)
llvm.exp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/test/lib/llvm.exp
diff -u llvm/test/lib/llvm.exp:1.10 llvm/test/lib/llvm.exp:1.11
--- llvm/test/lib/llvm.exp:1.10 Sun Apr 15 05:27:54 2007
+++ llvm/test/lib/llvm.exp Sun Apr 15 13:38:42 2007
@@ -113,7 +113,7 @@
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
More information about the llvm-commits
mailing list