summaryrefslogtreecommitdiff
path: root/spec/ruby/optional/capi
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2024-04-17 16:03:05 +0900
committerNobuyoshi Nakada <[email protected]>2024-04-17 18:47:07 +0900
commit09638741ba4d9547a0e48af8c767744fb1d7f68d (patch)
tree9fc723c63d3594e0b420d14fc7d9e876ab073125 /spec/ruby/optional/capi
parent7bc66a366ded3ae2d07a418e17a9da6ee24612fd (diff)
[Feature #20335] `Thread.each_caller_location` arguments
Accecpt the same arguments as `caller` and `caller_locations`.
Diffstat (limited to 'spec/ruby/optional/capi')
-rw-r--r--spec/ruby/optional/capi/spec_helper.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/ruby/optional/capi/spec_helper.rb b/spec/ruby/optional/capi/spec_helper.rb
index 2691aa1332..c7364484b4 100644
--- a/spec/ruby/optional/capi/spec_helper.rb
+++ b/spec/ruby/optional/capi/spec_helper.rb
@@ -33,12 +33,6 @@ def compile_extension(name)
ruby_header = "#{rubyhdrdir}/ruby.h"
abi_header = "#{rubyhdrdir}/ruby/internal/abi.h"
- if RbConfig::CONFIG["ENABLE_SHARED"] == "yes"
- # below is defined since 2.1, except for mswin, and maybe other platforms
- libdirname = RbConfig::CONFIG.fetch 'libdirname', 'libdir'
- libruby = "#{RbConfig::CONFIG[libdirname]}/#{RbConfig::CONFIG['LIBRUBY']}"
- end
-
begin
mtime = File.mtime(lib)
rescue Errno::ENOENT
@@ -49,7 +43,6 @@ def compile_extension(name)
when mtime <= File.mtime("#{spec_ext_dir}/#{ext}.c")
when mtime <= File.mtime(ruby_header)
when (mtime <= File.mtime(abi_header) rescue nil)
- when libruby && mtime <= File.mtime(libruby)
else
return lib # up-to-date
end