Skip to content

Commit 833d3c2

Browse files
committed
apacheGH-40410: [C++][CI] Try disabling hanging S3 test on macOS
1 parent 508eb2f commit 833d3c2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cpp/src/arrow/filesystem/s3fs_test.cc

+4
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,10 @@ TEST_F(S3RegionResolutionTest, RestrictedBucket) {
375375
}
376376

377377
TEST_F(S3RegionResolutionTest, NonExistentBucket) {
378+
#if defined(__APPLE__)
379+
// See investigation in GH-40410
380+
GTEST_SKIP() << "This test can hang on macOS CI";
381+
#endif
378382
auto maybe_region = ResolveS3BucketRegion("ursa-labs-nonexistent-bucket");
379383
ASSERT_RAISES(IOError, maybe_region);
380384
ASSERT_THAT(maybe_region.status().message(),

0 commit comments

Comments
 (0)