Skip to content

Commit

Permalink
apacheGH-40410: [C++][CI] Try disabling hanging S3 test on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Sep 24, 2024
1 parent 508eb2f commit 833d3c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cpp/src/arrow/filesystem/s3fs_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,10 @@ TEST_F(S3RegionResolutionTest, RestrictedBucket) {
}

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

0 comments on commit 833d3c2

Please sign in to comment.