mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.4 KiB
102 lines
2.4 KiB
|
|
AM_CPPFLAGS = \
|
|
-I${top_srcdir} \
|
|
-I${top_srcdir}/src \
|
|
-I${top_srcdir}/src/gnc-module \
|
|
-I${top_srcdir}/src/test-core \
|
|
-I${top_srcdir}/src/engine \
|
|
-I${top_srcdir}/src/engine/test-core \
|
|
-I${top_srcdir}/src/libqof/qof \
|
|
${GUILE_INCS} \
|
|
${GLIB_CFLAGS}
|
|
|
|
LDADD = \
|
|
${top_builddir}/src/gnc-module/libgnc-module.la \
|
|
${top_builddir}/src/test-core/libgncmod-test.la \
|
|
../libgncmod-engine.la \
|
|
../test-core/libgncmod-test-engine.la \
|
|
${top_builddir}/src/core-utils/libgnc-core-utils.la \
|
|
${top_builddir}/src/libqof/qof/libgnc-qof.la \
|
|
${GLIB_LIBS}
|
|
|
|
# these tests are ordered kind more or less in the order
|
|
# that they should be executed, with more basic tests coming first.
|
|
#
|
|
TESTS = \
|
|
test-link \
|
|
test-load-engine \
|
|
test-guid \
|
|
test-numeric \
|
|
test-date \
|
|
test-object \
|
|
test-commodities \
|
|
test-create-account \
|
|
test-account-object \
|
|
test-group-vs-book \
|
|
test-lots \
|
|
test-period \
|
|
test-querynew \
|
|
test-query \
|
|
test-recursive \
|
|
test-resolve-file-path \
|
|
test-resolve-url \
|
|
test-split-vs-account \
|
|
test-transaction-reversal \
|
|
test-transaction-voiding \
|
|
test-recurrence \
|
|
test-scm-query \
|
|
test-book-merge
|
|
|
|
GNC_TEST_DEPS = \
|
|
--gnc-module-dir ${top_builddir}/src/engine \
|
|
--guile-load-dir ${top_builddir}/src/gnc-module \
|
|
--guile-load-dir ${top_builddir}/src/engine \
|
|
--library-dir ${top_builddir}/lib/libqof/qof \
|
|
--library-dir ${top_builddir}/src/core-utils \
|
|
--library-dir ${top_builddir}/src/gnc-module \
|
|
--library-dir ${top_builddir}/src/engine
|
|
|
|
TESTS_ENVIRONMENT = \
|
|
SRCDIR=${srcdir} \
|
|
$(shell ${top_srcdir}/src/gnc-test-env --no-exports ${GNC_TEST_DEPS})
|
|
|
|
check_PROGRAMS = \
|
|
test-link \
|
|
test-commodities \
|
|
test-date \
|
|
test-recurrence \
|
|
test-guid \
|
|
test-account-object \
|
|
test-group-vs-book \
|
|
test-load-engine \
|
|
test-period \
|
|
test-lots \
|
|
test-numeric \
|
|
test-book-merge \
|
|
test-object \
|
|
test-query \
|
|
test-querynew \
|
|
test-recursive \
|
|
test-resolve-file-path \
|
|
test-resolve-url \
|
|
test-scm-query \
|
|
test-split-vs-account \
|
|
test-transaction-reversal \
|
|
test-transaction-voiding
|
|
|
|
|
|
test_link_SOURCES = test-link.c
|
|
test_link_LDADD = ../libgncmod-engine.la \
|
|
${top_builddir}/src/libqof/qof/libgnc-qof.la
|
|
|
|
EXTRA_DIST = \
|
|
test-create-account \
|
|
test-create-account.scm \
|
|
test-scm-query-import \
|
|
test-scm-query-import.scm
|
|
|
|
clean-local:
|
|
rm -f translog.*
|
|
|
|
distclean-local: clean-local
|