diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-08-29 16:32:55 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-08-29 16:32:55 +0900 |
commit | 265a725830a487b846bc32f70346f6438c95a7e9 (patch) | |
tree | 4bb44206c1409c723c0b7da5a9fdd50a8fe0bf11 /tool/lib/test | |
parent | 6c40aa35a5e491dd77ff11c67929638e2360292a (diff) |
Handle non-succeeding reports mingled with dots
Diffstat (limited to 'tool/lib/test')
-rw-r--r-- | tool/lib/test/unit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lib/test/unit.rb b/tool/lib/test/unit.rb index 391c065ec1..f2db3ee34f 100644 --- a/tool/lib/test/unit.rb +++ b/tool/lib/test/unit.rb @@ -889,7 +889,7 @@ module Test runner.add_status(" = #$1") when /\A\.+\z/ runner.succeed - when /\A[EFS]\z/ + when /\A\.*[EFS][EFS.]*\z/ runner.failed(s) else $stdout.print(s) |