diff options
Diffstat (limited to 'testdata/tcl/wapptest.tcl')
-rw-r--r-- | testdata/tcl/wapptest.tcl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testdata/tcl/wapptest.tcl b/testdata/tcl/wapptest.tcl index 201078e..b7e16e7 100644 --- a/testdata/tcl/wapptest.tcl +++ b/testdata/tcl/wapptest.tcl @@ -164,7 +164,7 @@ proc count_tests_and_errors {name logfile} { } if {[regexp {runtime error: +(.*)} $line all msg]} { # skip over "value is outside range" errors - if {[regexp {value .* is outside the range of representable} $line]} { + if {[regexp {.* is outside the range of representable} $line]} { # noop } else { incr G(test.$name.nError) @@ -894,4 +894,3 @@ if {$G(noui)==0} { do_some_stuff vwait forever } - |