mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Emit appropriate deprecation warnings in case code tries to invoke the removed functions. Only for gnc:module-load a more elaborate compat function has been written which should allow code using this obsolete function to continue to function. The emitted deprecation warning will guide the user to update his/her code for future compatibility.
136 lines
3.3 KiB
CMake
136 lines
3.3 KiB
CMake
# C(++) tests requiring a proper guile environment set up
|
|
|
|
set(ENGINE_TEST_INCLUDE_DIRS
|
|
${CMAKE_SOURCE_DIR}/libgnucash/backend/xml
|
|
${CMAKE_SOURCE_DIR}/libgnucash/engine
|
|
${CMAKE_SOURCE_DIR}/libgnucash/engine/test-core
|
|
${CMAKE_BINARY_DIR}/common # for config.h
|
|
${CMAKE_SOURCE_DIR}/common/test-core # for unittest-support.h
|
|
${CMAKE_SOURCE_DIR}/bindings/guile # for gnc-engine-guile.h
|
|
${GLIB2_INCLUDE_DIRS}
|
|
)
|
|
|
|
set(ENGINE_TEST_LIBS
|
|
gnc-engine
|
|
gncmod-test-engine
|
|
test-core
|
|
gnucash-guile
|
|
${LIBXML2_LDFLAGS}
|
|
-lm)
|
|
|
|
gnc_add_test_with_guile(test-scm-query test-scm-query.cpp ENGINE_TEST_INCLUDE_DIRS ENGINE_TEST_LIBS)
|
|
|
|
|
|
# Scheme tests
|
|
|
|
|
|
set(bindings_test_SCHEME
|
|
test-core-utils.scm
|
|
test-create-account.scm
|
|
)
|
|
|
|
#list(APPEND engine_test_SCHEME test-scm-query-import.scm) Fails
|
|
|
|
set(GUILE_DEPENDS
|
|
scm-gnc-module
|
|
scm-app-utils
|
|
scm-core-utils
|
|
scm-engine)
|
|
|
|
gnc_add_scheme_test_targets(scm-test-engine-extras
|
|
"test-engine-extras.scm"
|
|
"tests"
|
|
"${GUILE_DEPENDS}"
|
|
FALSE
|
|
)
|
|
|
|
# Module interfaces deprecated in 4.x, will be removed for 5.x
|
|
gnc_add_scheme_deprecated_module ("gnucash engine test test-extras" "tests test-engine-extras" "scm-test-engine-extras" "")
|
|
|
|
gnc_add_scheme_test_targets(scm-test-engine
|
|
"${bindings_test_SCHEME}"
|
|
"tests"
|
|
"${GUILE_DEPENDS};scm-test-engine-extras"
|
|
FALSE
|
|
)
|
|
|
|
|
|
add_dependencies(check scm-test-engine)
|
|
gnc_add_scheme_tests("${engine_test_SCHEME}")
|
|
|
|
if (HAVE_SRFI64)
|
|
gnc_add_scheme_test_targets (scm-srfi64-extras
|
|
"srfi64-extras.scm"
|
|
"tests"
|
|
"${GUILE_DEPENDS};scm-test-engine-extras;scm-srfi64-extras"
|
|
FALSE
|
|
)
|
|
|
|
# Module interfaces deprecated in 4.x, will be removed for 5.x
|
|
gnc_add_scheme_deprecated_module ("gnucash engine test srfi64-extras" "tests srfi64-extras" "scm-srfi64-extras" "")
|
|
|
|
set (scm_tests_with_srfi64_SOURCES
|
|
test-business-core.scm
|
|
)
|
|
|
|
gnc_add_scheme_test_targets (scm-test-with-srfi64
|
|
"${scm_tests_with_srfi64_SOURCES}"
|
|
"tests"
|
|
"${GUILE_DEPENDS};scm-test-engine-extras;scm-srfi64-extras;gnc-engine"
|
|
FALSE
|
|
)
|
|
|
|
gnc_add_scheme_tests("${scm_tests_with_srfi64_SOURCES}")
|
|
add_dependencies(check scm-srfi64-extras)
|
|
endif (HAVE_SRFI64)
|
|
|
|
|
|
set(test_scm_SCHEME
|
|
test-scm-utilities.scm
|
|
test-module-deprecation.scm
|
|
)
|
|
|
|
set(GUILE_DEPENDS
|
|
scm-gnc-module
|
|
scm-app-utils
|
|
scm-engine
|
|
scm-srfi64-extras
|
|
scm-deprecated-gnucash-deprecated-module
|
|
scm-deprecated-gnucash-superseded-module
|
|
)
|
|
|
|
if (HAVE_SRFI64)
|
|
gnc_add_scheme_test_targets(scm-test-scm
|
|
"${test_scm_SCHEME}"
|
|
"tests"
|
|
"${GUILE_DEPENDS}"
|
|
FALSE
|
|
)
|
|
|
|
gnc_add_scheme_tests("${test_scm_SCHEME}")
|
|
|
|
endif (HAVE_SRFI64)
|
|
|
|
set(test_engine_SCHEME_DIST
|
|
srfi64-extras.scm
|
|
${bindings_test_SCHEME}
|
|
test-engine-extras.scm
|
|
test-scm-query-import.scm
|
|
test-business-core.scm
|
|
)
|
|
|
|
set_local_dist(test_guile_DIST_local
|
|
CMakeLists.txt
|
|
test-scm-query.cpp
|
|
${test_engine_SCHEME_DIST}
|
|
${test_scm_SCHEME}
|
|
)
|
|
set(test_guile_DIST
|
|
${test_guile_DIST_local}
|
|
PARENT_SCOPE
|
|
)
|
|
|
|
# Define two imaginary deprecated guile modules to test the compat file generation code
|
|
gnc_add_scheme_deprecated_module ("gnucash deprecated-module" "" "" "")
|
|
gnc_add_scheme_deprecated_module ("gnucash superseded-module" "gnucash utilities" "scm-engine" "")
|