Skip to content

Commit

Permalink
unset known_bug flags in test of test_vm.rb.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kouji Takao committed Jun 21, 2011
1 parent 8c90461 commit 48573a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test_vm/block.rb
Expand Up @@ -587,7 +587,7 @@ def enclosing_method
end end
p enclosing_method p enclosing_method
end.call end.call
}, :known_bug => true }


assert ':ok', %{ assert ':ok', %{
b = :foo.to_proc b = :foo.to_proc
Expand Down
4 changes: 2 additions & 2 deletions test_vm/dispatch.rb
Expand Up @@ -232,7 +232,7 @@ def foo(&a)
end end
foo { p :ok } foo { p :ok }
end end
}, :known_bug => true }


assert '42', %{ assert '42', %{
class Foo class Foo
Expand Down Expand Up @@ -284,7 +284,7 @@ def foo() yield 1, 2 end
def foo(n); return if n == 0; foo(n-1); end def foo(n); return if n == 0; foo(n-1); end
foo(30000000) foo(30000000)
p 42 p 42
}, :known_bug => true }


assert 'true', 'p Object.new.methods.include?(:object_id)' assert 'true', 'p Object.new.methods.include?(:object_id)'
assert "false\ntrue", %{ assert "false\ntrue", %{
Expand Down

0 comments on commit 48573a1

Please sign in to comment.