summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-28 10:05:35 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-28 10:05:35 +0000
commit6aa3e5170e66342a1397c40360f4db802a76a4c3 (patch)
tree72cb1acc44e1796a2d77cb5599bbaf311bcc07f2
parent09c48f692c3276745fba4651977e02a136ce1200 (diff)
downloadruby-6aa3e5170e66342a1397c40360f4db802a76a4c3.tar.gz
ruby-6aa3e5170e66342a1397c40360f4db802a76a4c3.tar.xz
ruby-6aa3e5170e66342a1397c40360f4db802a76a4c3.zip
* bootstraptest/test_io.rb: no need to create real file.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--bootstraptest/test_io.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0025ef9ae..6033fe9e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/bootstraptest/test_io.rb b/bootstraptest/test_io.rb
index c0b906fb4..75570cd2c 100644
--- a/bootstraptest/test_io.rb
+++ b/bootstraptest/test_io.rb
@@ -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, $$) }