Skip to content

Commit

Permalink
Re-enable a few more 1-chunk-expected tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdbaranec committed Feb 19, 2025
1 parent ef70110 commit 7af8714
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions cpp/tests/io/parquet_chunked_reader_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ TEST_F(ParquetChunkedReaderTest, TestChunkedReadBoundaryCases)
// Test with zero limit: everything will be read in one chunk
{
auto const [result, num_chunks] = chunked_read(filepath, 0);
// EXPECT_EQ(num_chunks, 1);
EXPECT_EQ(num_chunks, 1);
CUDF_TEST_EXPECT_TABLES_EQUAL(*expected, *result);
}

Expand All @@ -268,7 +268,7 @@ TEST_F(ParquetChunkedReaderTest, TestChunkedReadBoundaryCases)
// Test with a very large limit
{
auto const [result, num_chunks] = chunked_read(filepath, 2L << 40);
// EXPECT_EQ(num_chunks, 1);
EXPECT_EQ(num_chunks, 1);
CUDF_TEST_EXPECT_TABLES_EQUAL(*expected, *result);
}

Expand Down Expand Up @@ -372,7 +372,7 @@ TEST_F(ParquetChunkedReaderTest, TestChunkedReadWithString)
// Test with zero limit: everything will be read in one chunk
{
auto const [result, num_chunks] = chunked_read(filepath_no_null, 0);
// EXPECT_EQ(num_chunks, 1);
EXPECT_EQ(num_chunks, 1);
CUDF_TEST_EXPECT_TABLES_EQUAL(*expected_no_null, *result);
}
{
Expand Down Expand Up @@ -562,7 +562,7 @@ TEST_F(ParquetChunkedReaderTest, TestChunkedReadWithStructs)
// Test with zero limit: everything will be read in one chunk
{
auto const [result, num_chunks] = chunked_read(filepath_no_null, 0);
// EXPECT_EQ(num_chunks, 1);
EXPECT_EQ(num_chunks, 1);
CUDF_TEST_EXPECT_TABLES_EQUAL(*expected_no_null, *result);
}
{
Expand Down Expand Up @@ -641,7 +641,7 @@ TEST_F(ParquetChunkedReaderTest, TestChunkedReadWithListsNoNulls)
// Test with zero limit: everything will be read in one chunk
{
auto const [result, num_chunks] = chunked_read(filepath, 0);
// EXPECT_EQ(num_chunks, 1);
EXPECT_EQ(num_chunks, 1);
CUDF_TEST_EXPECT_TABLES_EQUAL(*expected, *result);
}

Expand Down Expand Up @@ -724,7 +724,7 @@ TEST_F(ParquetChunkedReaderTest, TestChunkedReadWithListsHavingNulls)
// Test with zero limit: everything will be read in one chunk
{
auto const [result, num_chunks] = chunked_read(filepath, 0);
// EXPECT_EQ(num_chunks, 1);
EXPECT_EQ(num_chunks, 1);
CUDF_TEST_EXPECT_TABLES_EQUAL(*expected, *result);
}

Expand Down Expand Up @@ -816,7 +816,7 @@ TEST_F(ParquetChunkedReaderTest, TestChunkedReadWithStructsOfLists)
// Test with zero limit: everything will be read in one chunk
{
auto const [result, num_chunks] = chunked_read(filepath_no_null, 0);
// EXPECT_EQ(num_chunks, 1);
EXPECT_EQ(num_chunks, 1);
CUDF_TEST_EXPECT_TABLES_EQUAL(*expected_no_null, *result);
}
{
Expand Down Expand Up @@ -957,7 +957,7 @@ TEST_F(ParquetChunkedReaderTest, TestChunkedReadWithListsOfStructs)
// Test with zero limit: everything will be read in one chunk
{
auto const [result, num_chunks] = chunked_read(filepath_no_null, 0);
// EXPECT_EQ(num_chunks, 1);
EXPECT_EQ(num_chunks, 1);
CUDF_TEST_EXPECT_TABLES_EQUAL(*expected_no_null, *result);
}
{
Expand Down

0 comments on commit 7af8714

Please sign in to comment.