mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
Fix error in testing for END. notation.
Patch by Julien Lerouge. Thanks! llvm-svn: 48342
This commit is contained in:
parent
b479bf0d0c
commit
795aaef9d1
@ -119,7 +119,7 @@ proc RunLLVMTests { test_source_files } {
|
||||
foreach line [split [read $testFileId] \n] {
|
||||
|
||||
# if its the END. line then stop parsing (optimization for big files)
|
||||
if {[regexp {END.[ *]$} $line match endofscript]} {
|
||||
if {[regexp {END.[[:space:]]*$} $line match endofscript]} {
|
||||
break
|
||||
|
||||
# if the line is continued, concatenate and continue the loop
|
||||
|
Loading…
x
Reference in New Issue
Block a user