Skip to content

Commit

Permalink
Re-enable the parallelized test suite in the default test executable.
Browse files Browse the repository at this point in the history
It seems that the thread-related deadlocks have been resolved in the
latest version of libtileDB, so we can test parallization properly.
  • Loading branch information
LTLA committed Sep 30, 2024
1 parent b65ffdb commit 0324e7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 1 addition & 4 deletions tests/src/DenseMatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,9 @@ TEST_F(DenseMatrixMiscellaneousTest, ContextConstructor) {
}
}

#endif
/*************************************
*************************************/
#else

class DenseMatrixParallelTest : public ::testing::TestWithParam<std::tuple<DenseMatrixTestCore::SimulationParameters, bool, bool> >, public DenseMatrixTestCore {
protected:
Expand Down Expand Up @@ -375,6 +375,3 @@ INSTANTIATE_TEST_SUITE_P(
::testing::Values(true, false) // oracle usage
)
);


#endif
4 changes: 1 addition & 3 deletions tests/src/SparseMatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,9 @@ TEST_F(SparseMatrixMiscellaneousTest, ContextConstructor) {
}
}

#endif
/*************************************
*************************************/
#else

class SparseMatrixParallelTest : public ::testing::TestWithParam<std::tuple<SparseMatrixTestCore::SimulationParameters, bool, bool> >, public SparseMatrixTestCore {
protected:
Expand Down Expand Up @@ -392,5 +392,3 @@ INSTANTIATE_TEST_SUITE_P(
::testing::Values(true, false) // oracle usage
)
);

#endif

0 comments on commit 0324e7e

Please sign in to comment.