1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00

0030093: Test system - Incorrect parsing of the regular expression

Add "\-" to regular expression (which contained only literal, numeric and underscore character).
This commit is contained in:
apn 2018-09-03 11:52:00 +03:00 committed by bugmaster
parent 0e48692e82
commit 93808a4a9c

View File

@ -1634,7 +1634,7 @@ proc _log_html_summary {logdir log totals regressions improvements skipped total
puts $fd "<table>"
set groupgrid ""
foreach test [lrange $featured 1 end] {
if { ! [regexp {^(.*)\s+([\w.]+)$} $test res gg name] } {
if { ! [regexp {^(.*)\s+([\w\-.]+)$} $test res gg name] } {
set gg UNKNOWN
set name "Error building short list; check details"
}