summaryrefslogtreecommitdiffstats
path: root/llvm/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
commitd033c77ea390cd88277ae40367f819e51df93e66 (patch)
tree39ae92447a6e367192c657b3d9b70869883a1014 /llvm/test/lib
parent2baeaae8f4f092d9e51f9ef75ac31a1c25d505c5 (diff)
downloadbcm5719-llvm-d033c77ea390cd88277ae40367f819e51df93e66.tar.gz
bcm5719-llvm-d033c77ea390cd88277ae40367f819e51df93e66.zip
Some tests have really long RUN line sets. Read the first 4096 bytes instead
of 1024. llvm-svn: 36083
Diffstat (limited to 'llvm/test/lib')
-rw-r--r--llvm/test/lib/llvm.exp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/lib/llvm.exp b/llvm/test/lib/llvm.exp
index 1655547cde5..f508c8c89d2 100644
--- a/llvm/test/lib/llvm.exp
+++ b/llvm/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]} {
OpenPOWER on IntegriCloud