Skip to content

Commit

Permalink
Using DISABLED_ prefix for test
Browse files Browse the repository at this point in the history
Signed-off-by: Nghia Truong <[email protected]>
  • Loading branch information
ttnghia committed Oct 11, 2024
1 parent c66c2d2 commit 03c3e1a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cpp/tests/strings/factories_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,7 @@ TEST_F(StringsBatchConstructionTest, CreateColumnsFromPairs)
}

// The test below requires a huge amount of memory, thus it is disabled by default.
#ifdef LOCAL_TEST
TEST_F(StringsBatchConstructionTest, CreateLongStringsColumns)
TEST_F(StringsBatchConstructionTest, DISABLED_CreateLongStringsColumns)
{
auto constexpr num_columns = 2;
auto const stream = cudf::get_default_stream();
Expand Down Expand Up @@ -432,4 +431,3 @@ TEST_F(StringsBatchConstructionTest, CreateLongStringsColumns)
CUDF_TEST_EXPECT_COLUMNS_EQUAL(expected->view(), output[i]->view());
}
}
#endif // LOCAL_TEST

0 comments on commit 03c3e1a

Please sign in to comment.