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:
John Beard 2018-07-05 11:11:57 +01:00 committed by Wayne Stambaugh
parent d63c1a2118
commit 370a412f49
2 changed files with 5 additions and 0 deletions

View File

@ -912,6 +912,7 @@ if( UNIX AND NOT APPLE )
endif()
#include( CTest )
enable_testing()
if( UNIX AND NOT APPLE )

View File

@ -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
)