1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_signal.rb (test_trap_puts): Fix typo. "sync"

should be "STDOUT.sync".

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38997 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kosaki 2013-01-31 07:08:23 +00:00
parent e56c7878cf
commit b10e6b69a5
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Wed Jan 30 12:30:08 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* test/ruby/test_signal.rb (test_trap_puts): Fix typo. "sync"
should be "STDOUT.sync".
Thu Jan 31 15:39:00 2013 Zachary Scott <zachary@zacharyscott.net>
* string.c (rb_str_aset_m): Documentation for String#[]= fix

View file

@ -265,7 +265,7 @@ EOS
assert_in_out_err([], <<-INPUT, ["a"*10000], [])
Signal.trap(:INT) {
# for enable internal io mutex
sync = false
STDOUT.sync = false
# larger than internal io buffer
print "a"*10000
}