Skip to content

Commit cead06c

Browse files
committed
reorder tests such that they are cheaper to build
Signed-off-by: Martijn Govers <martijn.govers@alliander.com>
1 parent 000d51e commit cead06c

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

tests/cpp_unit_tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ add_subdirectory(logging)
1313
add_executable(
1414
power_grid_model_unit_tests
1515
"test_entry_point.cpp"
16+
"test_calculation_preparation.cpp"
1617
"test_topology.cpp"
1718
"test_sparse_ordering.cpp"
1819
"test_container.cpp"
1920
"test_index_mapping.cpp"
2021
"test_job_dispatch.cpp"
21-
"test_calculation_preparation.cpp"
2222
"test_link_solver.cpp"
2323
"test_supernodes.cpp"
2424
)

tests/cpp_unit_tests/auxiliary/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ add_executable(
88
"test_component_input.cpp"
99
"test_component_output.cpp"
1010
"test_component_update.cpp"
11-
"test_meta_data_generation.cpp"
12-
"test_dataset.cpp"
1311
"test_deserializer.cpp"
1412
"test_serializer.cpp"
13+
"test_dataset.cpp"
14+
"test_meta_data_generation.cpp"
1515
)
1616

1717
target_link_libraries(

tests/cpp_unit_tests/math_solver/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
add_executable(
66
power_grid_model_unit_tests_math_solver
77
"../test_entry_point.cpp"
8-
"test_sparse_lu_solver.cpp"
9-
"test_y_bus.cpp"
10-
"test_measured_values.cpp"
11-
"test_observability.cpp"
12-
"test_math_solver_pf_linear.cpp"
138
"test_math_solver_pf_newton_raphson.cpp"
14-
"test_math_solver_pf_iterative_current.cpp"
159
"test_math_solver_se_newton_raphson.cpp"
1610
"test_math_solver_se_iterative_linear.cpp"
11+
"test_math_solver_pf_iterative_current.cpp"
12+
"test_math_solver_pf_linear.cpp"
1713
"test_math_solver_sc.cpp"
14+
"test_sparse_lu_solver.cpp"
15+
"test_observability.cpp"
16+
"test_measured_values.cpp"
17+
"test_y_bus.cpp"
1818
)
1919

2020
target_link_libraries(

tests/cpp_unit_tests/optimizer/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
add_executable(
66
power_grid_model_unit_tests_optimizer
77
"../test_entry_point.cpp"
8-
"test_optimizer.cpp"
98
"test_tap_position_optimizer.cpp"
9+
"test_optimizer.cpp"
1010
)
1111

1212
target_link_libraries(

0 commit comments

Comments
 (0)