diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-11-13 11:44:51 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-11-13 14:29:16 +0900 |
| commit | 13407d959ab6e481db3148ea76f46c2f5aa70479 (patch) | |
| tree | ac6291b298a80e50c28150b06f57bb81a5e93829 | |
| parent | 2c1b1751e4b28929f426e4fd92c38f550872dbf5 (diff) | |
Omit assert_ractor with Windows platform
| -rw-r--r-- | tool/lib/core_assertions.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tool/lib/core_assertions.rb b/tool/lib/core_assertions.rb index 5d4c733a73..2a60cfc445 100644 --- a/tool/lib/core_assertions.rb +++ b/tool/lib/core_assertions.rb @@ -391,6 +391,7 @@ eom # Run Ractor-related test without influencing the main test suite def assert_ractor(src, args: [], require: nil, require_relative: nil, file: nil, line: nil, ignore_stderr: nil, **opt) return unless defined?(Ractor) + omit if windows? # https://bugs.ruby-lang.org/issues/21262 shim_value = "class Ractor; alias value take; end" unless Ractor.method_defined?(:value) |
