diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 20:31:42 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 20:31:42 +0000 |
| commit | d033c77ea390cd88277ae40367f819e51df93e66 (patch) | |
| tree | 39ae92447a6e367192c657b3d9b70869883a1014 /llvm/test/lib | |
| parent | 2baeaae8f4f092d9e51f9ef75ac31a1c25d505c5 (diff) | |
| download | bcm5719-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.exp | 2 |
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]} { |

