Skip to content

Commit

Permalink
test: skip enumerator test on aarch64+ruby-3.3.0
Browse files Browse the repository at this point in the history
which I think is crashing because of
https://bugs.ruby-lang.org/issues/20085
  • Loading branch information
flavorjones committed Dec 27, 2023
1 parent fdc21b1 commit 68f9ef5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/xml/test_node_set.rb
Original file line number Diff line number Diff line change
Expand Up @@ -805,6 +805,7 @@ def awesome(ns)
it "returns an enumerator given no block" do
skip("enumerators confuse valgrind") if i_am_running_in_valgrind
skip("enumerators confuse ASan") if i_am_running_with_asan
skip("https://bugs.ruby-lang.org/issues/20085") if RUBY_DESCRIPTION.include?("aarch64") && RUBY_VERSION == "3.3.0"

employees = xml.search("//employee")
enum = employees.each
Expand Down

0 comments on commit 68f9ef5

Please sign in to comment.