Skip to content

Commit 0cbb47e

Browse files
authored
Disable failing windows nightly test until fixed (#5648)
Those tests have been failing on a certain Windows runner since a long time, I am disabling them until fixed. Related to CORE-328 --- TYPE: NO_HISTORY
1 parent 827f609 commit 0cbb47e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/src/unit-sparse-global-order-reader.cc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1499,6 +1499,11 @@ TEST_CASE_METHOD(
14991499
CSparseGlobalOrderFx,
15001500
"Sparse global order reader: fragment skew",
15011501
"[sparse-global-order][rest]") {
1502+
#ifdef _WIN32
1503+
SKIP(
1504+
"CORE-328: This test fails on nightly [windows-latest - Sanitizer: OFF | "
1505+
"Assertions: ON | Debug] To re-enable when fixed.");
1506+
#endif
15021507
SECTION("Example") {
15031508
instance_fragment_skew<tiledb::test::AsserterCatch>(200, 8, 2);
15041509
}
@@ -1842,6 +1847,11 @@ TEST_CASE_METHOD(
18421847
CSparseGlobalOrderFx,
18431848
"Sparse global order reader: merge bound duplication",
18441849
"[sparse-global-order][rest]") {
1850+
#ifdef _WIN32
1851+
SKIP(
1852+
"CORE-328: This test fails on nightly [windows-latest - Sanitizer: OFF | "
1853+
"Assertions: ON | Debug] To re-enable when fixed.");
1854+
#endif
18451855
SECTION("Example") {
18461856
instance_merge_bound_duplication<tiledb::test::AsserterCatch>(
18471857
16, 16, 1024, 16, false);

0 commit comments

Comments
 (0)