summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2024-12-02 14:22:30 +0900
committerHiroshi SHIBATA <[email protected]>2024-12-02 15:32:05 +0900
commit165e34ed94de221d218c0e8c0e9fed9781634ebd (patch)
treef446f0390df8a3e530e318092d26450074afde08
parent587bd583cc6f2ad799b420823c60427196c39c1b (diff)
Disabled test_s_random_bytes_is_fork_safe again
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12231
-rw-r--r--test/test_securerandom.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_securerandom.rb b/test/test_securerandom.rb
index a3761da4f2..4c6bcf6f0e 100644
--- a/test/test_securerandom.rb
+++ b/test/test_securerandom.rb
@@ -11,7 +11,7 @@ class TestSecureRandom < Test::Unit::TestCase
# This test took 2 minutes on my machine.
# And 65536 times loop could not be enough for forcing PID recycle.
- # We should run this test only on GitHub Actions.
+ # TODO: We should run this test only on GitHub Actions.
def test_s_random_bytes_is_fork_safe
begin
require 'openssl'
@@ -21,7 +21,7 @@ class TestSecureRandom < Test::Unit::TestCase
SecureRandom.random_bytes(8)
pid, v1 = forking_random_bytes
assert(check_forking_random_bytes(pid, v1), 'Process ID not recycled?')
- end if ENV["CI"] && RUBY_PLATFORM =~ /darwin/ && `sw_vers -productVersion`.to_i > 13 # for Apple Silicon
+ end if false # ENV["CI"] && RUBY_PLATFORM =~ /darwin/ && `sw_vers -productVersion`.to_i > 13 # for Apple Silicon
def forking_random_bytes
r, w = IO.pipe