summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo Anjo <ivo.anjo@datadoghq.com>2021-02-19 17:52:17 +0000
committerIvo Anjo <ivo.anjo@datadoghq.com>2021-02-19 17:52:17 +0000
commitdb93a49e046647a2537cac3992db0a4cb9bdb5ad (patch)
tree79ae1f38c36e0b0ed500e54dd58a0f0b5470da77
parent0ac0a4537f2afc670e00339bd3907698c05818e5 (diff)
downloadffi-db93a49e046647a2537cac3992db0a4cb9bdb5ad.tar.gz
Skip thread naming spec on JRuby
I'll take a look at it separately as well.
-rw-r--r--spec/ffi/function_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/ffi/function_spec.rb b/spec/ffi/function_spec.rb
index 187d04b..9939942 100644
--- a/spec/ffi/function_spec.rb
+++ b/spec/ffi/function_spec.rb
@@ -24,6 +24,7 @@ describe FFI::Function do
context 'when called with a block' do
it 'creates a thread for dispatching callbacks and sets its name' do
skip "not yet supported on TruffleRuby" if RUBY_ENGINE == "truffleruby"
+ skip "not yet supported on JRuby" if RUBY_ENGINE == 'jruby'
FFI::Function.new(:int, []) { 5 } # Trigger initialization