[llvm-commits] CVS: llvm/test/lib/llvm.exp
Reid Spencer
reid at x10sys.com
Sun Apr 15 13:32:03 PDT 2007
Changes in directory llvm/test/lib:
llvm.exp updated: 1.11 -> 1.12
---
Log message:
Some tests have really long RUN line sets. Read the first 4096 bytes instead
of 1024.
---
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.11 llvm/test/lib/llvm.exp:1.12
--- llvm/test/lib/llvm.exp:1.11 Sun Apr 15 13:38:42 2007
+++ llvm/test/lib/llvm.exp Sun Apr 15 15:31:42 2007
@@ -106,7 +106,7 @@
set testFileId [ open $test r]
set runline ""
set PRNUMS ""
- foreach line [split [read $testFileId 1024] \n] {
+ foreach line [split [read $testFileId 4096] \n] {
# if its the END. line then stop parsing (optimization for big files)
if {[regexp {END.[ *]$} $line match endofscript]} {
More information about the llvm-commits
mailing list