diff options
author | Dan Winship <danw@gnome.org> | 2013-11-10 13:27:15 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-11-23 00:43:54 -0500 |
commit | be231c6be03586f9a428f9ae5c9ae166b2747b75 (patch) | |
tree | 91388fd9c3557c0563cda9568a5804cf48907da3 /glib-tap.mk | |
parent | 8f5b40c04672a150ed6df27d9f83aba8ec8ea29d (diff) |
glib-tap.mk: fix to actually use the TAP driver
The Makefile rules in glib-tap.mk were copied from an example that
assumed that all the test programs had names ending in ".test", so
they didn't actually have any effect for us and resulted in us still
using the standard automake test driver. Fix this so we actually do
use TAP now.
https://bugzilla.gnome.org/show_bug.cgi?id=711796
Diffstat (limited to 'glib-tap.mk')
-rw-r--r-- | glib-tap.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glib-tap.mk b/glib-tap.mk index 6b9d107c0..c97bf3f28 100644 --- a/glib-tap.mk +++ b/glib-tap.mk @@ -6,7 +6,7 @@ TESTS_ENVIRONMENT= \ G_DEBUG=gc-friendly \ MALLOC_CHECK_=2 \ MALLOC_PERTURB_=$$(($${RANDOM:-256} % 256)) -TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh +LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh LOG_COMPILER = $(top_srcdir)/tap-test NULL = |