summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-25 16:13:11 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-25 16:13:11 +0000
commit2d5eca7f505b852d6ab50a5c7aa4c05f601a18b5 (patch)
tree6d3443d5cb32489a47c3ca1cbf1579c4c540180b
parenta48d15477e7cec8b9d497f36b9cbdff8f75142f3 (diff)
merge revision(s) 57589: [Backport #13205]
parallel.rb: fix intervention * test/lib/test/unit/parallel.rb (_report): send a response and a newline atomically, to get rid of intervention with "p" which runs in a separate thread. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@58095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/lib/test/unit/parallel.rb3
-rw-r--r--version.h2
2 files changed, 2 insertions, 3 deletions
diff --git a/test/lib/test/unit/parallel.rb b/test/lib/test/unit/parallel.rb
index ea809f28ae..b0347d720e 100644
--- a/test/lib/test/unit/parallel.rb
+++ b/test/lib/test/unit/parallel.rb
@@ -151,8 +151,7 @@ module Test
end
def _report(res, *args) # :nodoc:
- res = "#{res} #{args.pack("m0")}" unless args.empty?
- @stdout.puts(res)
+ @stdout.write(args.empty? ? "#{res}\n" : "#{res} #{args.pack("m0")}\n")
end
def puke(klass, meth, e) # :nodoc:
diff --git a/version.h b/version.h
index 8f634100f8..499d4490d3 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.2.7"
#define RUBY_RELEASE_DATE "2017-03-26"
-#define RUBY_PATCHLEVEL 427
+#define RUBY_PATCHLEVEL 428
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 3