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

* bootstraptest/test_io.rb: no need to create real file.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-08-28 10:05:35 +00:00
parent d68321c18e
commit a7fa5122d7
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Aug 28 19:04:50 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* bootstraptest/test_io.rb: no need to create real file.
Thu Aug 28 09:26:53 2008 NARUSE, Yui <naruse@ruby-lang.org>
* test/cgi/test_cgi_multipart.rb: add test for multipart.

View file

@ -79,7 +79,7 @@ assert_normal_exit %q{
at_exit { p :foo }
megacontent = "abc" * 12345678
File.open("megasrc", "w") {|f| f << megacontent }
#File.open("megasrc", "w") {|f| f << megacontent }
Thread.new { sleep rand*0.2; Process.kill(:INT, $$) }