QA: Rename geometry to shape_poly_set_refactor

This test is not really concerned with generic geometric code testing,
but rather the correctness of a refactoring effort.

Rename it make this clearer, and also to make way for generic geometry tests.
This commit is contained in:
John Beard 2018-07-09 14:28:40 +01:00 committed by Wayne Stambaugh
parent 79e4e767e9
commit e84d1d169c
7 changed files with 7 additions and 7 deletions

View File

@ -12,7 +12,7 @@ if( KICAD_SCRIPTING_MODULES )
endif()
add_subdirectory( geometry )
add_subdirectory( shape_poly_set_refactor )
add_subdirectory( pcb_test_window )
add_subdirectory( polygon_triangulation )
add_subdirectory( polygon_generator )

View File

@ -26,7 +26,7 @@ find_package( wxWidgets 3.0.0 COMPONENTS gl aui adv html core net base xml stc R
add_definitions(-DBOOST_TEST_DYN_LINK)
add_executable(qa_geometry
add_executable( qa_shape_poly_set_refactor
test_module.cpp
test_chamfer_fillet.cpp
test_collision.cpp
@ -42,7 +42,7 @@ include_directories(
${Boost_INCLUDE_DIR}
)
target_link_libraries(qa_geometry
target_link_libraries( qa_shape_poly_set_refactor
polygon
common
polygon
@ -53,8 +53,8 @@ target_link_libraries(qa_geometry
${wxWidgets_LIBRARIES}
)
add_dependencies( qa_geometry pcbnew )
add_dependencies( qa_shape_poly_set_refactor pcbnew )
add_test( NAME geometry
COMMAND qa_geometry --run_test=!ChamferFillet/Fillet
)
add_test( NAME shape_poly_set_refactor
COMMAND qa_shape_poly_set_refactor --run_test=!ChamferFillet/Fillet
)