diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-06-11 18:45:49 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-06-11 20:00:00 +0200 |
commit | 43143aa481c1cdd1765aac5ac959a8f11926b46a (patch) | |
tree | 783f389485d4fc7b8dee3d686a6aa1f9d9e9203c /source3 | |
parent | 2ffffcb220082a4adf31dd15cecb30f8b610614c (diff) | |
download | samba-43143aa481c1cdd1765aac5ac959a8f11926b46a.tar.gz samba-43143aa481c1cdd1765aac5ac959a8f11926b46a.tar.bz2 samba-43143aa481c1cdd1765aac5ac959a8f11926b46a.zip |
Fix Samba 3 selftest to use new selftest formatting functions.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 32fe908de0..24117d345d 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -3207,9 +3207,12 @@ selftest:: all torture timelimit $(PERL) $(selftestdir)/selftest.pl \ --prefix=${selftest_prefix} --target=samba3 \ --testlist="$(srcdir)/selftest/tests.sh|" \ - --expected-failures=$(srcdir)/selftest/knownfail \ --exclude=$(srcdir)/selftest/skip \ - --socket-wrapper $(TESTS) --format=$(SELFTEST_FORMAT) --immediate + --socket-wrapper $(TESTS) | \ + $(PERL) $(selftestdir)/filter-subunit.pl \ + --expected-failures=$(srcdir)/selftest/knownfail | \ + $(PERL) $(selftestdir)/format-subunit.pl --format=$(SELFTEST_FORMAT) \ + --immediate selftest-%: $(MAKE) selftest TESTS=$* |