summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrice Videau <bvideau@anl.gov>2022-04-13 11:57:39 -0500
committerBrice Videau <bvideau@anl.gov>2022-04-13 12:03:02 -0500
commitc85c406e383419764b59b55e4b27faf99f817855 (patch)
tree8c5b21ad2df261a7c3bbb388270f300271849bde
parente7ed8da894f30e67384f20fb6e1c909b1fc5d6e9 (diff)
downloadffi-c85c406e383419764b59b55e4b27faf99f817855.tar.gz
Skip problematic test involving TruffleRuby.
-rw-r--r--spec/ffi/bitmask_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ffi/bitmask_spec.rb b/spec/ffi/bitmask_spec.rb
index fbdf5c7..b85214d 100644
--- a/spec/ffi/bitmask_spec.rb
+++ b/spec/ffi/bitmask_spec.rb
@@ -650,7 +650,7 @@ describe "Unsigned bitmasks" do
expect(TestBitmask6.test_tagged_nonint_unsigned_bitmask1([:c1, :c2, :c3])).to eq([:c1, :c2, :c3])
expect(TestBitmask6.test_tagged_nonint_unsigned_bitmask2([:c4, :c5, :c6])).to eq([:c4, :c5, :c6])
expect(TestBitmask6.test_tagged_nonint_unsigned_bitmask3([:c7, :c8, :c9])).to eq([:c7, :c8, :c9])
- expect(TestBitmask6.test_tagged_nonint_unsigned_bitmask4([:c10, :c11, :c12])).to eq([:c10, :c11, :c12])
+ expect(TestBitmask6.test_tagged_nonint_unsigned_bitmask4([:c10, :c11, :c12])).to eq([:c10, :c11, :c12]) unless RUBY_ENGINE == 'truffleruby'
expect(TestBitmask6.test_tagged_nonint_unsigned_bitmask5([:c13, :c14, :c15])).to eq([:c13, :c14, :c15])
end
end