Skip to content

Commit 697c055

Browse files
committed
Skip broken tests
1 parent 4bc252d commit 697c055

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

cpp/src/arrow/adapters/orc/adapter_test.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -642,6 +642,9 @@ TEST(TestAdapterReadWrite, ThrowWhenTZDBUnavaiable) {
642642
if (adapters::orc::GetOrcMajorVersion() >= 2) {
643643
GTEST_SKIP() << "Only ORC pre-2.0.0 versions have the time zone database check";
644644
}
645+
#ifdef _WIN32
646+
GTEST_SKIP() << "GH-47489: Expected error is not thrown on Windows";
647+
#endif
645648

646649
EnvVarGuard tzdir_guard("TZDIR", "/wrong/path");
647650
const char* expect_str = "IANA time zone database is unavailable but required by ORC";

cpp/src/arrow/engine/substrait/serde_test.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,6 +1065,9 @@ NamedTableProvider AlwaysProvideSameTable(std::shared_ptr<Table> table) {
10651065
}
10661066

10671067
TEST(Substrait, ExecReadRelWithLocalFiles) {
1068+
#ifdef _WIN32
1069+
GTEST_SKIP() << "GH-47490: Substrait does not properly parse PARQUET_TEST_DATA path on Windows";
1070+
#endif
10681071
ASSERT_OK_AND_ASSIGN(std::string dir_string,
10691072
arrow::internal::GetEnvVar("PARQUET_TEST_DATA"));
10701073

cpp/src/arrow/testing/gtest_util_test.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ TEST(AssertTestWithinUlp, Basics) {
288288
AssertWithinUlp(123.4567, 123.45670000000015, 11);
289289
AssertWithinUlp(123.456f, 123.456085f, 11);
290290
#ifndef _WIN32
291+
// GH-47442
291292
EXPECT_FATAL_FAILURE(AssertWithinUlp(123.4567, 123.45670000000015, 10),
292293
"not within 10 ulps");
293294
EXPECT_FATAL_FAILURE(AssertWithinUlp(123.456f, 123.456085f, 10), "not within 10 ulps");

0 commit comments

Comments
 (0)