90 lines
3.3 KiB
CMake
90 lines
3.3 KiB
CMake
# This program source code file is part of KiCad, a free EDA CAD application.
|
|
#
|
|
# Copyright (C) 2014-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, you may find one here:
|
|
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
# or you may search the http://www.gnu.org website for the version 2 license,
|
|
# or you may write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
## Unit tests
|
|
add_subdirectory( api )
|
|
add_subdirectory( common )
|
|
add_subdirectory( gerbview )
|
|
add_subdirectory( eeschema )
|
|
add_subdirectory( libs )
|
|
add_subdirectory( pcbnew )
|
|
|
|
if( KICAD_SPICE_QA )
|
|
add_subdirectory( spice )
|
|
endif()
|
|
|
|
if( KICAD_TEST_XML_OUTPUT )
|
|
# To do this, you will need xmlrunner
|
|
set( PYTEST_ARGS_QAPYTHON --junitxml=${CMAKE_CURRENT_BINARY_DIR}/qapython.junit-results.xml )
|
|
set( PYTEST_ARGS_QACLI --junitxml=${CMAKE_CURRENT_BINARY_DIR}/qacli.junit-results.xml )
|
|
endif()
|
|
|
|
# avoid formatting this otherwise you will introduce whitespace into the PATH string
|
|
set( NEW_PATHS
|
|
"${CMAKE_BINARY_DIR}/kicad/;\
|
|
${CMAKE_BINARY_DIR}/common/;\
|
|
${CMAKE_BINARY_DIR}/common/gal/;\
|
|
${CMAKE_BINARY_DIR}/pcbnew/;\
|
|
${CMAKE_BINARY_DIR}/eeschema/;\
|
|
" )
|
|
|
|
set( EXTRA_PYTEST_ENVIRONMENT "" )
|
|
|
|
if( APPLE )
|
|
# We need to use the installed kicad-cli not the build dir to run these tests
|
|
set( NEW_PATHS
|
|
"${CMAKE_INSTALL_PREFIX}/KiCad.app/Contents/MacOS;\
|
|
${NEW_PATHS};" )
|
|
get_filename_component( CAIRO_LIB_BASE "${CAIRO_LIBRARY}" DIRECTORY )
|
|
set( EXTRA_PYTEST_ENVIRONMENT "DYLD_FALLBACK_LIBRARY_PATH=${CAIRO_LIB_BASE}" )
|
|
endif()
|
|
|
|
set( QA_PATH_REPLACEMENT "PATH=${NEW_PATHS};$ENV{PATH}" )
|
|
|
|
if (UNIX)
|
|
string(REPLACE ";" ":" QA_PATH_REPLACEMENT "${QA_PATH_REPLACEMENT}")
|
|
endif()
|
|
|
|
if( NOT (MSVC AND CMAKE_BUILD_TYPE STREQUAL "Debug") )
|
|
# qa_python will never work under MSVC + Debug because we only have the Release mode python.exe
|
|
# but the kicad binaries are linked to the debug mode python
|
|
# Test that runs the QA tests through scripting
|
|
add_test(NAME qa_python
|
|
COMMAND ${PYTHON_EXECUTABLE} -m pytest ${CMAKE_CURRENT_SOURCE_DIR}/pcbnewswig ${PYTEST_ARGS_QAPYTHON}
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
set_tests_properties( qa_python
|
|
PROPERTIES
|
|
ENVIRONMENT "${QA_PATH_REPLACEMENT};PYTHONPATH=${CMAKE_BINARY_DIR}/pcbnew;${PYTHON_QA_PATH};${EXTRA_PYTEST_ENVIRONMENT}"
|
|
)
|
|
endif()
|
|
|
|
add_test(NAME qa_cli
|
|
COMMAND ${PYTHON_EXECUTABLE} -m pytest ${CMAKE_CURRENT_SOURCE_DIR}/cli ${PYTEST_ARGS_QACLI}
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
set_tests_properties( qa_cli
|
|
PROPERTIES
|
|
ENVIRONMENT "${QA_PATH_REPLACEMENT};KICAD_RUN_FROM_BUILD_DIR=1;PYTHONPATH=${CMAKE_BINARY_DIR}/pcbnew;${PYTHON_QA_PATH};${EXTRA_PYTEST_ENVIRONMENT}"
|
|
)
|