mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
pass -DLEAKS=ON or -DODR=ON to enable these features. They have an effect only with CMAKE_BUILD_TYPE=Asan and don't work on Apple because Apple clang doesn't enable them.
32 lines
1.4 KiB
CMake
32 lines
1.4 KiB
CMake
|
|
if (WITH_PYTHON)
|
|
find_path(test_core_dir "unittest_support.py" PATHS ${CMAKE_BINARY_DIR}/common/test-core ${CMAKE_SOURCE_DIR}/common/test-core)
|
|
if (${test_core_dir} STREQUAL "test_core_dir-NOTFOUND")
|
|
# Because it hasn't been built yet
|
|
set(test_core_dir ${CMAKE_BINARY_DIR}/common/test-core)
|
|
endif()
|
|
add_custom_target(test-python-bindings ALL DEPENDS unittest_support gnucash-core-c-build gnucash-core-c-py sw-core-utils-build sw-core-utils-py sw-app-utils-build sw-app-utils-py)
|
|
add_dependencies(check test-python-bindings)
|
|
add_test(NAME python-bindings COMMAND ${Python3_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/runTests.py.in)
|
|
set(PYTHON_ENV "GNC_UNINSTALLED=1;GNC_BUILDDIR=${CMAKE_BINARY_DIR};PYTHONPATH=${PYTHON_SYSCONFIG_BUILD}:${LIBDIR_BUILD}/gnucash:${test_core_dir}")
|
|
set(ASAN_ENV "${ASAN_DYNAMIC_LIB_ENV};ASAN_OPTIONS=${ASAN_TEST_OPTIONS}")
|
|
set_tests_properties(python-bindings PROPERTIES ENVIRONMENT "$<IF:$<CONFIG:Asan>,${PYTHON_ENV};${ASAN_ENV},${PYTHON_ENV}>")
|
|
|
|
endif()
|
|
|
|
set(test_python_bindings_DATA
|
|
runTests.py.in
|
|
test_gettext.py
|
|
test_account.py
|
|
test_book.py
|
|
test_business.py
|
|
test_commodity.py
|
|
test_numeric.py
|
|
test_session.py
|
|
test_split.py
|
|
test_transaction.py
|
|
test_query.py
|
|
test_function_class.py)
|
|
|
|
set_dist_list(test_python_bindings_DIST CMakeLists.txt ${test_python_bindings_DATA})
|