summaryrefslogtreecommitdiff
path: root/tool/lib/test/unit.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-08-29 16:32:55 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-08-29 16:32:55 +0900
commit265a725830a487b846bc32f70346f6438c95a7e9 (patch)
tree4bb44206c1409c723c0b7da5a9fdd50a8fe0bf11 /tool/lib/test/unit.rb
parent6c40aa35a5e491dd77ff11c67929638e2360292a (diff)
Handle non-succeeding reports mingled with dots
Diffstat (limited to 'tool/lib/test/unit.rb')
-rw-r--r--tool/lib/test/unit.rb2
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)