[llvm-commits] CVS: llvm/test/lib/llvm.exp
Reid Spencer
reid at x10sys.com
Sun Apr 15 03:28:15 PDT 2007
Changes in directory llvm/test/lib:
llvm.exp updated: 1.9 -> 1.10
---
Log message:
Two improvements:
1. Only read the first 1024 bytes of the file. The RUN: lines should all be
within that amount of space. This keeps I/O costs down when reading
very large files.
2. Print PR numbers with a PR prefix so it is clear what they are.
---
Diffs of the changes: (+2 -2)
llvm.exp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/test/lib/llvm.exp
diff -u llvm/test/lib/llvm.exp:1.9 llvm/test/lib/llvm.exp:1.10
--- llvm/test/lib/llvm.exp:1.9 Sun Apr 15 02:34:58 2007
+++ llvm/test/lib/llvm.exp Sun Apr 15 05:27:54 2007
@@ -106,7 +106,7 @@
set testFileId [ open $test r]
set runline ""
set PRNUMS ""
- foreach line [split [read $testFileId] \n] {
+ foreach line [split [read $testFileId 1024] \n] {
# if its the END. line then stop parsing (optimization for big files)
if {[regexp {END.[ *]$} $line match endofscript]} {
@@ -128,7 +128,7 @@
# if its an PR line, save the problem report number
} elseif {[regexp {PR([0-9]+)} $line match prnum]} {
if {$PRNUMS == ""} {
- set PRNUMS $prnum
+ set PRNUMS "PR$prnum"
} else {
set PRNUMS "$PRNUMS,$prnum"
}
More information about the llvm-commits
mailing list