summaryrefslogtreecommitdiff
path: root/test/lib/test
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/test')
-rw-r--r--test/lib/test/unit.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/lib/test/unit.rb b/test/lib/test/unit.rb
index aa0a0a52b3..2b52eefa49 100644
--- a/test/lib/test/unit.rb
+++ b/test/lib/test/unit.rb
@@ -533,7 +533,11 @@ module Test
def deal(io, type, result, rep, shutting_down = false)
worker = @workers_hash[io]
- case cmd = worker.read
+ cmd = worker.read
+ cmd.sub!(/\A\.+/, '')
+ case cmd
+ when ''
+ # just only dots, ignore
when /^okay$/
worker.status = :running
jobs_status