We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89b5f44 commit a8d7f8bCopy full SHA for a8d7f8b
2 files changed
.github/workflows/test.yml
@@ -40,7 +40,6 @@ jobs:
40
run: bundle install
41
- name: Run test
42
run: rake compile test
43
- continue-on-error: ${{ contains(matrix.ruby, 'truffleruby') }}
44
45
spec:
46
runs-on: ubuntu-latest
test/pathname/test_pathname.rb
@@ -491,6 +491,7 @@ def obj.to_str; "a/b"; end
491
end
492
493
def test_initialize_nul
494
+ omit "https://github.com/truffleruby/truffleruby/issues/4047" if RUBY_ENGINE == "truffleruby"
495
assert_raise(ArgumentError) { Pathname.new("a\0") }
496
497
@@ -612,6 +613,7 @@ def test_destructive_update
612
613
614
615
def test_null_character
616
617
assert_raise(ArgumentError) { Pathname.new("\0") }
618
619
0 commit comments