We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fb1007 commit 40ab7b8Copy full SHA for 40ab7b8
test/ruby/test_autoload.rb
@@ -274,6 +274,11 @@ def test_autoload_while_autoloading
274
end
275
276
def test_bug_13526
277
+ # Skip this on macOS 10.13 because of the following error:
278
+ # http://rubyci.s3.amazonaws.com/osx1013/ruby-master/log/20231011T014505Z.fail.html.gz
279
+ require "rbconfig"
280
+ omit if RbConfig::CONFIG["target_os"] == "darwin17"
281
+
282
script = File.join(__dir__, 'bug-13526.rb')
283
assert_ruby_status([script], '', '[ruby-core:81016] [Bug #13526]')
284
0 commit comments