diff options
author | jimw@mysql.com <> | 2006-04-13 13:01:57 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2006-04-13 13:01:57 -0700 |
commit | 0ed6517ab89e8d540c823a1b5fbfa726eb2be556 (patch) | |
tree | c1e9f2b1d43080af258cb346f4df22c09ced3b56 /unittest | |
parent | 66c29e0f498ed5f91da4dda8b51de28f790ba043 (diff) | |
download | mariadb-git-0ed6517ab89e8d540c823a1b5fbfa726eb2be556.tar.gz |
Fix 'make distcheck' problems with new unittest code, and a small
portability problem.
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/Makefile.am | 4 | ||||
-rw-r--r-- | unittest/examples/Makefile.am | 2 | ||||
-rw-r--r-- | unittest/mysys/Makefile.am | 2 | ||||
-rw-r--r-- | unittest/mytap/t/Makefile.am | 2 | ||||
-rw-r--r-- | unittest/mytap/tap.c | 5 |
5 files changed, 9 insertions, 6 deletions
diff --git a/unittest/Makefile.am b/unittest/Makefile.am index 8943e58170d..f6dfb41e4e1 100644 --- a/unittest/Makefile.am +++ b/unittest/Makefile.am @@ -2,6 +2,8 @@ SUBDIRS = mytap . mysys examples noinst_SCRIPTS = unit +DISTCLEANFILES = unit + unittests = mysys examples .PHONY: all mytap mysys examples test @@ -18,6 +20,6 @@ mysys: examples: cd examples && $(MAKE) -unit: unit.pl +unit: $(srcdir)/unit.pl cp $< $@ chmod +x $@ diff --git a/unittest/examples/Makefile.am b/unittest/examples/Makefile.am index 2e48ab8d9b3..7990777d5b6 100644 --- a/unittest/examples/Makefile.am +++ b/unittest/examples/Makefile.am @@ -1,5 +1,5 @@ AM_CPPFLAGS = -I$(srcdir) -I$(top_builddir)/include -AM_CPPFLAGS += -I$(top_builddir)/unittest/mytap +AM_CPPFLAGS += -I$(top_srcdir)/unittest/mytap AM_LDFLAGS = -L$(top_builddir)/unittest/mytap diff --git a/unittest/mysys/Makefile.am b/unittest/mysys/Makefile.am index 248dda84f7e..7cfc8175024 100644 --- a/unittest/mysys/Makefile.am +++ b/unittest/mysys/Makefile.am @@ -1,6 +1,6 @@ AM_CPPFLAGS = @ZLIB_INCLUDES@ -I$(top_builddir)/include -AM_CPPFLAGS += -I$(top_srcdir)/include -I$(top_builddir)/unittest/mytap +AM_CPPFLAGS += -I$(top_srcdir)/include -I$(top_srcdir)/unittest/mytap AM_LDFLAGS = -L$(top_builddir)/unittest/mytap -L$(top_builddir)/mysys AM_LDFLAGS += -L$(top_builddir)/strings -L$(top_builddir)/dbug diff --git a/unittest/mytap/t/Makefile.am b/unittest/mytap/t/Makefile.am index 88f663c2a9e..b8e140832a6 100644 --- a/unittest/mytap/t/Makefile.am +++ b/unittest/mytap/t/Makefile.am @@ -2,7 +2,7 @@ AM_CPPFLAGS = -I$(srcdir) -I$(top_builddir)/include AM_CPPFLAGS += -I$(srcdir)/.. -AM_LDFLAGS = -L$(srcdir)/.. +AM_LDFLAGS = -L$(top_builddir)/unittest/mytap AM_CFLAGS = -Wall -ansi -pedantic diff --git a/unittest/mytap/tap.c b/unittest/mytap/tap.c index 182210dda4f..2b728670cea 100644 --- a/unittest/mytap/tap.c +++ b/unittest/mytap/tap.c @@ -138,11 +138,12 @@ skip_all(char const *reason, ...) void ok(int const pass, char const *fmt, ...) { + va_list ap; + va_start(ap, fmt); + if (!pass && *g_test.todo == '\0') ++g_test.failed; - va_list ap; - va_start(ap, fmt); emit_tap(pass, fmt, ap); va_end(ap); if (*g_test.todo != '\0') |