diff options
author | Ted Gould <ted@canonical.com> | 2009-10-28 11:33:00 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-28 11:33:00 -0500 |
commit | b6d06cac56a71c099084a5e37ed28961a37e66d3 (patch) | |
tree | 09c21cb5f41880c1a7b28527655a374cebb9b61a /tests/Makefile.am | |
parent | 20d116ae0d74559cd5f30fe4f1bff08ed6378176 (diff) | |
parent | 9c868b9b66fa67484dff603f20ce852180e7f77c (diff) | |
download | ayatana-indicator-application-b6d06cac56a71c099084a5e37ed28961a37e66d3.tar.gz ayatana-indicator-application-b6d06cac56a71c099084a5e37ed28961a37e66d3.tar.bz2 ayatana-indicator-application-b6d06cac56a71c099084a5e37ed28961a37e66d3.zip |
Pulling in the unreviewed lib-flesh branch
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..f6a0525 --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,84 @@ + +check_PROGRAMS = \ + test-libcustomindicator \ + test-libcustomindicator-dbus-client \ + test-libcustomindicator-dbus-server + +TESTS = +DISTCLEANFILES = $(TESTS) + +######################################### +## test-libcustomindicator +######################################### + +test_libcustomindicator_SOURCES = \ + test-libcustomindicator.c + +test_libcustomindicator_CFLAGS = \ + $(INDICATOR_CFLAGS) \ + -Wall -Werror \ + -I$(top_srcdir)/src + +test_libcustomindicator_LDADD = \ + $(INDICATOR_LIBS) \ + $(top_builddir)/src/libcustomindicator.la + +######################################### +## test-libcustomindicator-dbus-client +######################################### + +test_libcustomindicator_dbus_client_SOURCES = \ + test-defines.h \ + test-libcustomindicator-dbus-client.c + +test_libcustomindicator_dbus_client_CFLAGS = \ + $(INDICATOR_CFLAGS) \ + -Wall -Werror \ + -I$(top_srcdir)/src + +test_libcustomindicator_dbus_client_LDADD = \ + $(INDICATOR_LIBS) \ + $(top_builddir)/src/libcustomindicator.la + +######################################### +## test-libcustomindicator-dbus-server +######################################### + +test_libcustomindicator_dbus_server_SOURCES = \ + test-defines.h \ + test-libcustomindicator-dbus-server.c + +test_libcustomindicator_dbus_server_CFLAGS = \ + $(INDICATOR_CFLAGS) \ + -Wall -Werror \ + -I$(top_srcdir)/src + +test_libcustomindicator_dbus_server_LDADD = \ + $(INDICATOR_LIBS) \ + $(top_builddir)/src/libcustomindicator.la + +######################################### +## Actual tests +######################################### + +XML_REPORT = libcustomindicator-check-results.xml +HTML_REPORT = libcustomindicator-check-results.html + +libcustomindicator-tests: test-libcustomindicator + @echo "#!/bin/sh" > libcustomindicator-tests + @echo gtester -k --verbose -o=$(XML_REPORT) ./test-libcustomindicator >> libcustomindicator-tests + @chmod +x libcustomindicator-tests + +TESTS += libcustomindicator-tests +DISTCLEANFILES += $(XML_REPORT) $(HTML_REPORT) + + +DBUS_RUNNER=dbus-test-runner --dbus-config /usr/share/dbus-test-runner/session.conf + +test-libcustomindicator-dbus: test-libcustomindicator-dbus-client test-libcustomindicator-dbus-server Makefile.am + @echo "#!/bin/sh" > test-libcustomindicator-dbus + @echo $(DBUS_RUNNER) --task ./test-libcustomindicator-dbus-client --task-name Client --task ./test-libcustomindicator-dbus-server --task-name Server --ignore-return >> test-libcustomindicator-dbus + @chmod +x test-libcustomindicator-dbus + +TESTS += test-libcustomindicator-dbus + |