[llvm-commits] CVS: llvm/test/lib/llvm.exp
Reid Spencer
reid at x10sys.com
Sat Apr 14 21:57:24 PDT 2007
Changes in directory llvm/test/lib:
llvm.exp updated: 1.6 -> 1.7
---
Log message:
Allow replacement of %% with %
---
Diffs of the changes: (+2 -0)
llvm.exp | 2 ++
1 files changed, 2 insertions(+)
Index: llvm/test/lib/llvm.exp
diff -u llvm/test/lib/llvm.exp:1.6 llvm/test/lib/llvm.exp:1.7
--- llvm/test/lib/llvm.exp:1.6 Sat Apr 14 17:50:08 2007
+++ llvm/test/lib/llvm.exp Sat Apr 14 23:57:03 2007
@@ -68,6 +68,8 @@
regsub -all {%s} $new_line $test new_line
#replace %t with temp filenames
regsub -all {%t} $new_line [file join Output $tmpFile] new_line
+ #replace %% with %
+ regsub -all {%%} $new_line % new_line
return $new_line
}
More information about the llvm-commits
mailing list