From e28790149f2e87bfb1baa10b9bf3a9ce3793e1f9 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 26 Sep 2007 11:12:55 +0000 Subject: * 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 --- bootstraptest/test_knownbug.rb | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'bootstraptest') 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' - -- cgit