feat(equation-and-linear-solve): step 1 — essential-bc-elimination
This commit is contained in:
@@ -308,3 +308,40 @@ add_test(
|
||||
COMMAND "$<TARGET_FILE:fesa_serial_assembly_tests>"
|
||||
--gtest_filter=SymmetricCsr.*
|
||||
)
|
||||
|
||||
add_executable(fesa_constraint_tests
|
||||
unit/constraints/essential_bc_test.cpp
|
||||
)
|
||||
|
||||
target_compile_features(fesa_constraint_tests PRIVATE cxx_std_20)
|
||||
target_compile_options(
|
||||
fesa_constraint_tests
|
||||
PRIVATE
|
||||
/W4
|
||||
/permissive-
|
||||
/EHsc
|
||||
)
|
||||
|
||||
target_link_libraries(fesa_constraint_tests
|
||||
PRIVATE
|
||||
fesa_core
|
||||
GTest::gtest_main
|
||||
)
|
||||
|
||||
add_test(
|
||||
NAME EssentialBc
|
||||
COMMAND "$<TARGET_FILE:fesa_constraint_tests>"
|
||||
--gtest_filter=EssentialBc.*
|
||||
)
|
||||
|
||||
add_test(
|
||||
NAME ConstraintElimination
|
||||
COMMAND "$<TARGET_FILE:fesa_constraint_tests>"
|
||||
--gtest_filter=ConstraintElimination.*
|
||||
)
|
||||
|
||||
add_test(
|
||||
NAME Reaction
|
||||
COMMAND "$<TARGET_FILE:fesa_constraint_tests>"
|
||||
--gtest_filter=Reaction.*
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user