diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-03-25 17:38:26 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-03-25 17:38:26 +0000 |
commit | ce3a15ebdb4d172a12ba66936a76a1b6ebf1f931 (patch) | |
tree | 94f570883b16ef5864852277be0e1cb9ba5a2009 | |
parent | 1890c9ae5a5d433bed59938d5b726e40e90d9645 (diff) | |
parent | 0bab2a3585c4aac7dde806133e4f04eb488d9006 (diff) | |
download | ayatana-indicator-sound-ce3a15ebdb4d172a12ba66936a76a1b6ebf1f931.tar.gz ayatana-indicator-sound-ce3a15ebdb4d172a12ba66936a76a1b6ebf1f931.tar.bz2 ayatana-indicator-sound-ce3a15ebdb4d172a12ba66936a76a1b6ebf1f931.zip |
merged in Teds makefile fix
-rw-r--r-- | tests/Makefile.am | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index bc67c30..e99ec54 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -115,19 +115,21 @@ indicator-sound-tests: indicator-sound-tests-gtester Makefile.am indicator-sound-tests-gtester: test-indicator-sound Makefile.am @echo "#!/bin/sh" > $@ - @echo gtester -k --verbose -o=indicator-sound-check-results.xml ./test-indicator-sound >> $@ + @echo gtester -k --verbose -o=$(XML_REPORT) ./test-indicator-sound >> $@ @chmod +x $@ TESTS += indicator-sound-tests-gtester +PULSE_XML_REPORT = pulse-manager-check-results.xml + pulse-manager-tests-gtester: test-pulse-manager Makefile.am @echo "#!/bin/sh" > $@ - @echo gtester -k --verbose -o=pulse-manager-check-results.xml ./test-pulse-manager >> $@ + @echo gtester -k --verbose -o=$(PULSE_XML_REPORT) ./test-pulse-manager >> $@ @chmod +x $@ TESTS += pulse-manager-tests-gtester -DISTCLEANFILES += $(XML_REPORT) $(HTML_REPORT) indicator-sound-tests-gtester +DISTCLEANFILES += $(XML_REPORT) $(PULSE_XML_REPORT) $(HTML_REPORT) indicator-sound-tests-gtester DBUS_RUNNER=dbus-test-runner --dbus-config /usr/share/dbus-test-runner/session.conf |