summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-26 11:12:55 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-26 11:12:55 +0000
commite28790149f2e87bfb1baa10b9bf3a9ce3793e1f9 (patch)
tree957f887840a7a68be2a885755421d68b47a18bb4
parent6b7f1f56c8ab9164f2e4a3db09464f71c5bfd443 (diff)
downloadruby-e28790149f2e87bfb1baa10b9bf3a9ce3793e1f9.tar.gz
ruby-e28790149f2e87bfb1baa10b9bf3a9ce3793e1f9.tar.xz
ruby-e28790149f2e87bfb1baa10b9bf3a9ce3793e1f9.zip
* bootstraptest/test_knownbug.rb: remove a fixed test.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13524 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--bootstraptest/test_knownbug.rb18
2 files changed, 4 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog
index 49ec552f4..2740f4267 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Sep 26 20:11:46 2007 Koichi Sasada <ko1@atdot.net>
+
+ * bootstraptest/test_knownbug.rb: remove a fixed test.
+
Wed Sep 26 20:00:12 2007 Koichi Sasada <ko1@atdot.net>
* bootstraptest/test_knownbug.rb: move fixed tests.
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 764688525..39dc6a9b8 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -2,21 +2,3 @@
# This test file concludes tests which point out known bugs.
# So all tests will cause failure.
#
-
-assert_equal 'ok', %q{
-begin
- r, w = IO.pipe
- w.write "foo"
- w.close
- # assert_raise(IOError, "[ruby-dev:31650]") { 20000.times { r.ungetc "a" } }
- r.getc
- 20000.times { r.ungetc "a" }
- data = r.read
- if data.size == 20002 && data[-5..-1] == "aaaoo"
- :ok
- end
-ensure
- r.close
-end
-}, 'rename test/ruby/test_io.rb#_test_ungetc if fixed'
-