summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-15 10:27:54 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-15 10:27:54 +0000
commit66959cecdb9a95e3eed398f39580b43ea1d959ce (patch)
treed99c8142ab44acf8594302b35d9d6ca3b784110f /test/lib
parenta9338b6195d9fb6a1c7e16680e6e9e2dad177a38 (diff)
downloadllvm-66959cecdb9a95e3eed398f39580b43ea1d959ce.tar.gz
llvm-66959cecdb9a95e3eed398f39580b43ea1d959ce.tar.bz2
llvm-66959cecdb9a95e3eed398f39580b43ea1d959ce.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/llvm.exp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp
index d029251ae4..3002d11bd4 100644
--- a/test/lib/llvm.exp
+++ b/test/lib/llvm.exp
@@ -106,7 +106,7 @@ proc RunLLVMTests { test_source_files } {
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 @@ proc RunLLVMTests { test_source_files } {
# 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"
}