From 23823ac4ccf01f43749598d0ad02fc20704fd00a Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Thu, 11 Jan 2024 14:25:25 +0100 Subject: [PATCH] [GR-41382] Exclude transient ownership specs on darwin-amd64 too --- test/mri/excludes/TestFileUtils.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/mri/excludes/TestFileUtils.rb b/test/mri/excludes/TestFileUtils.rb index 90825e36d65d..e2fa4cf0ff82 100644 --- a/test/mri/excludes/TestFileUtils.rb +++ b/test/mri/excludes/TestFileUtils.rb @@ -1,4 +1,4 @@ -exclude :test_chown, "transient (GR-41382)" if RUBY_PLATFORM.start_with?('aarch64-darwin') -exclude :test_chown_R, "transient (GR-41382)" if RUBY_PLATFORM.start_with?('aarch64-darwin') -exclude :test_chown_dir_group_ownership_not_recursive, "transient (GR-41382)" if RUBY_PLATFORM.start_with?('aarch64-darwin') -exclude :test_chown_noop, "transient (GR-41382)" if RUBY_PLATFORM.start_with?('aarch64-darwin') +exclude :test_chown, "transient (GR-41382)" if RUBY_PLATFORM.include?('darwin') +exclude :test_chown_R, "transient (GR-41382)" if RUBY_PLATFORM.include?('darwin') +exclude :test_chown_dir_group_ownership_not_recursive, "transient (GR-41382)" if RUBY_PLATFORM.include?('darwin') +exclude :test_chown_noop, "transient (GR-41382)" if RUBY_PLATFORM.include?('darwin')