Browse Source

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.
pull/13/head
John Beard 8 years ago
committed by Wayne Stambaugh
parent
commit
e84d1d169c
  1. 2
      qa/CMakeLists.txt
  2. 12
      qa/shape_poly_set_refactor/CMakeLists.txt
  3. 0
      qa/shape_poly_set_refactor/test_chamfer_fillet.cpp
  4. 0
      qa/shape_poly_set_refactor/test_collision.cpp
  5. 0
      qa/shape_poly_set_refactor/test_iterator.cpp
  6. 0
      qa/shape_poly_set_refactor/test_module.cpp
  7. 0
      qa/shape_poly_set_refactor/test_segment.cpp

2
qa/CMakeLists.txt

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

12
qa/geometry/CMakeLists.txt → qa/shape_poly_set_refactor/CMakeLists.txt

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

0
qa/geometry/test_chamfer_fillet.cpp → qa/shape_poly_set_refactor/test_chamfer_fillet.cpp

0
qa/geometry/test_collision.cpp → qa/shape_poly_set_refactor/test_collision.cpp

0
qa/geometry/test_iterator.cpp → qa/shape_poly_set_refactor/test_iterator.cpp

0
qa/geometry/test_module.cpp → qa/shape_poly_set_refactor/test_module.cpp

0
qa/geometry/test_segment.cpp → qa/shape_poly_set_refactor/test_segment.cpp

Loading…
Cancel
Save