projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dcb925e
)
Some tests have really long RUN line sets. Read the first 4096 bytes instead
author
Reid Spencer
<rspencer@reidspencer.com>
Sun, 15 Apr 2007 20:31:42 +0000
(20:31 +0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Sun, 15 Apr 2007 20:31:42 +0000
(20:31 +0000)
of 1024.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36083
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/lib/llvm.exp
patch
|
blob
|
history
diff --git
a/test/lib/llvm.exp
b/test/lib/llvm.exp
index 1655547cde52c99859d33a8c78e0c1450d81e826..f508c8c89d29d4e6078c14d5c5fea78e87d7503f 100644
(file)
--- 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
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]} {