summaryrefslogtreecommitdiff
path: root/bootstraptest/test_knownbug.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-23 08:33:32 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-23 08:33:32 +0000
commit1e4278c98dbb8481d460483146cf18f0ff108c37 (patch)
tree5eaee2ea9759bd17b4675b9ca7d82260eaa7791f /bootstraptest/test_knownbug.rb
parente265a55740d7cec3e392d421e4e0f76c6fdb56f0 (diff)
* bootstraptest/test_knownbug.rb: move solved tests.
* bootstraptest/test_io.rb, test_marshal.rb, test_objectspace.rb: ditto. * test/ruby/test_integer.rb, test_regexp.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14005 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest/test_knownbug.rb')
-rw-r--r--bootstraptest/test_knownbug.rb47
1 files changed, 1 insertions, 46 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 99df941737..0fc902b552 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -3,49 +3,11 @@
# So all tests will cause failure.
#
-assert_finish 1, %q{
- r, w = IO.pipe
- t1 = Thread.new { r.sysread(1) }
- t2 = Thread.new { r.sysread(1) }
- sleep 0.1
- w.write "a"
- sleep 0.1
- w.write "a"
-}, '[ruby-dev:31866]'
-
-assert_normal_exit %q{
- Marshal.load(Marshal.dump({"k"=>"v"}), lambda {|v| })
-}
-
assert_not_match /method_missing/, %q{
STDERR.reopen(STDOUT)
variable_or_mehtod_not_exist
}
-assert_normal_exit %q{
- ary = (1..10).to_a
- ary.permutation(2) {|x|
- if x == [1,2]
- ObjectSpace.each_object(String) {|s|
- s.clear if s.length == 40 || s.length == 80
- }
- end
- }
-}, '[ruby-dev:31982]'
-
-assert_normal_exit %q{
- ary = (1..100).to_a
- ary.permutation(2) {|x|
- if x == [1,2]
- ObjectSpace.each_object(Array) {|o| o.clear if o == ary && o.object_id != ary.object_id }
- end
- }
-}, '[ruby-dev:31985]'
-
-assert_normal_exit %q{
- Regexp.union("a", "a")
-}
-
assert_equal 'ok', %q{
begin
Regexp.union(
@@ -58,14 +20,6 @@ assert_equal 'ok', %q{
end
}
-assert_equal 'ok', %q{
- 0**-1 == 0 ? :ng : :ok
-}
-
-assert_equal '(?-mix:\000)', %q{
- Regexp.new("\0")
-}
-
assert_normal_exit %q{
STDERR.reopen(STDOUT)
require 'yaml'
@@ -85,3 +39,4 @@ assert_equal 'ok', %q{
C.new.to_enum.each {|*v| vs2 << v }
vs1 == vs2 ? :ok : :ng
}, '[ruby-dev:32329]'
+