Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce runtime of tests #910

Merged
merged 4 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/t8_forest/t8_gtest_forest_commit.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ TEST_P (forest_commit, test_forest_commit)
t8_forest_t forest_ada_bal_part;
t8_forest_t forest_abp_3part;

#ifdef T8_ENABLE_DEBUG
#ifdef T8_ENABLE_LESS_TESTS
int level_step = 2;
#else
int level_step = 3;
Expand Down
2 changes: 1 addition & 1 deletion test/t8_schemes/t8_gtest_face_descendant.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class class_descendant: public TestDFS {
TEST_P (class_descendant, t8_check_face_desc)
{

#ifdef T8_ENABLE_DEBUG
#ifdef T8_ENABLE_LESS_TESTS
const int maxlvl = 3;
#else
const int maxlvl = 5;
Expand Down
2 changes: 1 addition & 1 deletion test/t8_schemes/t8_gtest_face_neigh.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class face_neigh: public testing::TestWithParam<t8_eclass_t> {
t8_eclass_scheme_c *ts;
t8_eclass_t eclass;

#ifdef T8_ENABLE_DEBUG
#ifdef T8_ENABLE_LESS_TESTS
const int maxlvl = 3;
#else
const int maxlvl = 4;
Expand Down
2 changes: 1 addition & 1 deletion test/t8_schemes/t8_gtest_successor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ t8_deep_successor (t8_element_t *element, t8_element_t *successor, t8_element_t

TEST_P (class_successor, test_recursive_and_deep_successor)
{
#ifdef T8_ENABLE_DEBUG
#ifdef T8_ENABLE_LESS_TESTS
const int maxlvl = 3;
#else
const int maxlvl = 4;
Expand Down