forked from OSchip/llvm-project
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. llvm-svn: 36071
This commit is contained in:
parent
c943f8ff34
commit
4faa954403
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue