mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 23:10:22 +00:00
dee75bce2d
Makefile.decl does not work well with scripts that stay in srcdir, so generate test-simplify from test-simplify.in, just os that it ends up in builddir.
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
NULL =
|
|
|
|
test_simplify = \
|
|
simplify/test1.ui simplify/test1.expected \
|
|
simplify/test2.ui simplify/test2.expected \
|
|
simplify/test3.ui simplify/test3.expected \
|
|
simplify/test4.ui simplify/test4.expected \
|
|
simplify/test5.ui simplify/test5.expected \
|
|
simplify/test6.ui simplify/test6.expected \
|
|
simplify/test7.ui simplify/test7.expected \
|
|
simplify/test8.ui simplify/test8.expected \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST += \
|
|
$(test_simplify) \
|
|
test-simplify.in \
|
|
$(NULL)
|
|
|
|
TESTS_ENVIRONMENT = \
|
|
GTK_BUILDER_TOOL="$(top_builddir)/gtk/gtk-builder-tool"
|
|
|
|
TEST_PROGS += \
|
|
test-simplify \
|
|
$(NULL)
|
|
|
|
test-simplify:test-simplify.in
|
|
$(AM_V_GEN) cp $< $@
|
|
|
|
if BUILDOPT_INSTALL_TESTS
|
|
insttestdir = $(libexecdir)/installed-tests/$(PACKAGE)
|
|
insttest_SCRIPTS = $(TEST_PROGS)
|
|
nobase_insttest_DATA = $(test_simplify)
|
|
|
|
test-simplify.test: test-simplify Makefile
|
|
$(AM_V_GEN) (echo '[Test]' > $@.tmp; \
|
|
echo 'Type=session' >> $@.tmp; \
|
|
echo 'Exec env G_ENABLE_DIAGNOSTIC=0 TEST_DATA_DIR="$(insttestdir)/simplify" $(insttestdir)/$<' >> $@.tmp; \
|
|
mv $@.tmp $@)
|
|
|
|
test_files = $(TEST_PROGS:=.test)
|
|
|
|
DISTCLEANFILES = \
|
|
test-simplify \
|
|
$(test_files) \
|
|
$(NULL)
|
|
|
|
testmetadir = #(datadir)/installed-tests/$(PACKAGE)
|
|
testmeta_DATA = $(test_files)
|
|
endif
|
|
|
|
-include $(top_srcdir)/git.mk
|