Enable CTest tests and add qa_geometry as a test
This allows the use of `make test` or `ctest` to run all registered tests. The ChamferFillet/Fillet test is disabled for now as it fails.
This commit is contained in:
parent
d63c1a2118
commit
370a412f49
|
@ -912,6 +912,7 @@ if( UNIX AND NOT APPLE )
|
|||
endif()
|
||||
|
||||
#include( CTest )
|
||||
enable_testing()
|
||||
|
||||
if( UNIX AND NOT APPLE )
|
||||
|
||||
|
|
|
@ -54,3 +54,7 @@ target_link_libraries(qa_geometry
|
|||
)
|
||||
|
||||
add_dependencies( qa_geometry pcbnew )
|
||||
|
||||
add_test( NAME geometry
|
||||
COMMAND qa_geometry --run_test=!ChamferFillet/Fillet
|
||||
)
|
Loading…
Reference in New Issue