Skip to content

Commit c1bdf78

Browse files
Skipping unreliable tests (rapidsai#554)
Related to rapidsai#553 Signed-off-by: niranda perera <niranda.perera@gmail.com>
1 parent 43e385e commit c1bdf78

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

cpp/tests/streaming/test_shuffler.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@ TEST_P(StreamingShuffler, callbacks_1_consumer) {
305305
}
306306

307307
TEST_P(StreamingShuffler, callbacks_2_consumer) {
308+
GTEST_SKIP(); // TODO: Fix this (#553)
308309
EXPECT_NO_FATAL_FAILURE(run_test([&](auto ch_in, auto ch_out) -> Node {
309310
return shuffler_nb(
310311
ctx, stream, std::move(ch_in), std::move(ch_out), op_id, num_partitions, 2
@@ -313,6 +314,7 @@ TEST_P(StreamingShuffler, callbacks_2_consumer) {
313314
}
314315

315316
TEST_P(StreamingShuffler, callbacks_4_consumer) {
317+
GTEST_SKIP(); // TODO: Fix this (#553)
316318
EXPECT_NO_FATAL_FAILURE(run_test([&](auto ch_in, auto ch_out) -> Node {
317319
return shuffler_nb(
318320
ctx, stream, std::move(ch_in), std::move(ch_out), op_id, num_partitions, 4
@@ -336,6 +338,10 @@ class ShufflerAsyncTest
336338

337339
void SetUp() override {
338340
std::tie(n_threads, n_inserts, n_partitions, n_consumers) = GetParam();
341+
342+
if (n_consumers > 1)
343+
GTEST_SKIP(); // TODO: Fix this (#553)
344+
339345
BaseStreamingFixture::SetUpWithThreads(n_threads);
340346
GlobalEnvironment->barrier(); // prevent accidental mixup between shufflers
341347

0 commit comments

Comments
 (0)