Skip to content

Commit

Permalink
Removed old maglev skips in test
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//src/RubyInline/dev/": change = 12407]
  • Loading branch information
zenspider committed Nov 12, 2019
1 parent f6c9329 commit d28bfc7
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions test/test_inline.rb
Original file line number Diff line number Diff line change
Expand Up @@ -870,8 +870,6 @@ def util_test_build(src)
end

def test_build_good
skip "https://github.com/MagLev/maglev/issues/231" if maglev?

code = util_simple_code(:DumbTest1, "long dumbpi() { return 314; }")
util_test_build(code) do
result = DumbTest1.new.dumbpi
Expand Down Expand Up @@ -982,8 +980,6 @@ class Bar

class TestModule < InlineTestCase
def test_nested
skip "https://github.com/MagLev/maglev/issues/231" if maglev?

Object.class_eval $test_module_code
fb = Foo::Bar.new
assert_equal(42, fb.forty_two_instance)
Expand All @@ -1004,16 +1000,12 @@ def test_nested
end

def test_argument_check_good
skip "https://github.com/MagLev/maglev/issues/231" if maglev?

util_arity_check
fb = Foo::Bar.new
assert_equal 13, fb.arity6(1, 2, 3, 4, 5, "blah")
end

def test_argument_check_fewer
skip "https://github.com/MagLev/maglev/issues/231" if maglev?

util_arity_check
fb = Foo::Bar.new

Expand All @@ -1023,8 +1015,6 @@ def test_argument_check_fewer
end

def test_argument_check_more
skip "https://github.com/MagLev/maglev/issues/231" if maglev?

util_arity_check
fb = Foo::Bar.new
assert_raises ArgumentError do
Expand All @@ -1033,8 +1023,6 @@ def test_argument_check_more
end

def test_inline
skip "https://github.com/MagLev/maglev/issues/231" if maglev?

self.class.inline(:C) do |builder|
builder.c "int add(int a, int b) { return a + b; }"
end
Expand Down

0 comments on commit d28bfc7

Please sign in to comment.