1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
AM_TESTS_ENVIRONMENT = FLATPAK_TESTS_DEBUG=1 \
GI_TYPELIB_PATH=$$(cd $(top_builddir) && pwd)$${GI_TYPELIB_PATH:+:$$GI_TYPELIB_PATH} \
LD_LIBRARY_PATH=$$(cd $(top_builddir)/.libs && pwd)$${LD_LIBRARY_PATH:+:$$LD_LIBRARY_PATH} \
PATH=$$(cd $(top_builddir) && pwd):$${PATH} \
$(NULL)
if !WITH_SYSTEM_DEBUGEDIT
AM_TESTS_ENVIRONMENT += FLATPAK_BUILDER_DEBUGEDIT=$$(cd $(top_builddir) && pwd)/flatpak-builder-debugedit
endif
dist_installed_test_extra_scripts += \
tests/empty-configure \
tests/test-configure \
tests/make-test-app.sh \
tests/make-test-runtime.sh \
tests/make-test-bundles.sh \
tests/testpython.py \
$(NULL)
dist_installed_test_data = \
tests/libtest.sh \
tests/org.test.Hello.png \
tests/org.test.Hello.desktop \
tests/Hello.desktop \
tests/org.test.Hello.appdata.xml \
tests/org.test.Hello.xml \
tests/Hello.xml \
tests/Hello.appdata.xml \
tests/Hello-desktop.appdata.xml \
tests/source1.json \
tests/source2.json \
tests/test.json \
tests/test.yaml \
tests/test-rename.json \
tests/test-rename-appdata.json \
tests/test-runtime.json \
tests/module1.json \
tests/module1.yaml \
tests/data1 \
tests/data1.patch \
tests/module2.json \
tests/module2.yaml \
tests/data2 \
tests/data2.patch \
tests/session.conf.in \
tests/0001-Add-test-logo.patch \
tests/org.test.Python.json \
tests/org.test.Python2.json \
tests/importme.py \
tests/importme2.py \
tests/org.test.Deprecated.MD5.archive.json \
tests/org.test.Deprecated.MD5.archive.yaml \
tests/org.test.Deprecated.MD5.file.json \
tests/org.test.Deprecated.MD5.file.yaml \
tests/org.test.Deprecated.SHA1.archive.json \
tests/org.test.Deprecated.SHA1.archive.yaml \
tests/org.test.Deprecated.SHA1.file.json \
tests/org.test.Deprecated.SHA1.file.yaml \
tests/hello.sh \
tests/hello.tar.xz \
tests/org.flatpak_builder.gui.desktop \
tests/org.flatpak_builder.gui.json \
tests/org.flatpak_builder.gui.metainfo.xml \
tests/org.flatpak.appstream_media.json \
tests/org.test.Hello-256.png \
tests/org.flatpak.install_test.json \
$(NULL)
installed_test_keyringdir = $(installed_testdir)/test-keyring
installed_test_keyring2dir = $(installed_testdir)/test-keyring2
if ENABLE_INSTALLED_TESTS
dist_installed_test_keyring_DATA = \
tests/test-keyring/README \
tests/test-keyring/pubring.gpg \
tests/test-keyring/secring.gpg \
$(NULL)
dist_installed_test_keyring2_DATA = \
tests/test-keyring2/README \
tests/test-keyring2/pubring.gpg \
tests/test-keyring2/secring.gpg \
$(NULL)
endif
dist_test_scripts = \
tests/test-builder.sh \
tests/test-builder-deprecated.sh \
tests/test-builder-python.sh \
$(NULL)
@VALGRIND_CHECK_RULES@
VALGRIND_SUPPRESSIONS_FILES=tests/flatpak.supp tests/glib.supp
EXTRA_DIST += tests/flatpak.supp tests/glib.supp
DISTCLEANFILES += \
$(NULL)
|