aboutsummaryrefslogtreecommitdiffstats
path: root/test/lib
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-15 20:31:42 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-15 20:31:42 +0000
commit6b2e2be2e407a0ec6e24acafe81b0d67a334e82d (patch)
treed218c58b6f50f41975b535fadc036b265d1a9f08 /test/lib
parentdcb925e917bdd05d67fe31a8556efda8b1af2606 (diff)
downloadexternal_llvm-6b2e2be2e407a0ec6e24acafe81b0d67a334e82d.zip
external_llvm-6b2e2be2e407a0ec6e24acafe81b0d67a334e82d.tar.gz
external_llvm-6b2e2be2e407a0ec6e24acafe81b0d67a334e82d.tar.bz2
Some tests have really long RUN line sets. Read the first 4096 bytes instead
of 1024. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/llvm.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/llvm.exp b/test/lib/llvm.exp
index 1655547..f508c8c 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 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]} {