Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ gemspec
gem 'fileutils', '>= 1.2.0'
gem 'rake-compiler'
gem 'test-unit'
gem "test-unit-ruby-core"
gem "test-unit-ruby-core", '>= 1.0.7'
gem "rdoc"
8 changes: 0 additions & 8 deletions test/etc/test_etc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,6 @@ def test_ractor_parallel
omit "This test is flaky and intermittently failing now on ModGC workflow" if ENV['GITHUB_WORKFLOW'] == 'ModGC'

assert_ractor(<<~RUBY, require: 'etc', timeout: 60)
class Ractor
alias join take
end unless Ractor.method_defined? :value # compat with Ruby 3.4 and olders

10.times.map do
Ractor.new do
100.times do
Expand All @@ -208,10 +204,6 @@ class Ractor

def test_ractor_unsafe
assert_ractor(<<~RUBY, require: 'etc')
class Ractor
alias value take
end unless Ractor.method_defined? :value # compat with Ruby 3.4 and olders

r = Ractor.new do
begin
Etc.passwd
Expand Down