Remove extension from format-subunit.
authorJelmer Vernooij <jelmer@samba.org>
Sun, 28 Mar 2010 19:42:34 +0000 (21:42 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Sun, 28 Mar 2010 19:46:58 +0000 (21:46 +0200)
selftest/format-subunit [moved from selftest/format-subunit.pl with 100% similarity]
source3/Makefile.in
source4/selftest/config.mk

index 3d5a618993b329b58e5d561665b6ba8fc0298ada..9913806fe794d20db8ffec3655a07777e3b0be0c 100644 (file)
@@ -3237,7 +3237,6 @@ valgrindtest:: all torture timelimit
         VALGRIND="valgrind -q --num-callers=30 --log-file=${selftest_prefix}/valgrind.log" \
         PERL="$(PERL)" $(srcdir)/script/tests/selftest.sh ${selftest_prefix} all ${TEST_EXTRA_ARGS}
 
-SELFTEST_FORMAT = plain
 selftestdir = ../selftest
 
 S3_LD_LIBPATH_OVERRIDE = $(LIB_PATH_VAR)="$(builddir)/bin:$$$(LIB_PATH_VAR)"
@@ -3254,8 +3253,7 @@ selftest:: all torture timelimit
                --socket-wrapper $(TESTS) | \
                $(PERL) $(selftestdir)/filter-subunit.pl \
                --expected-failures=$(srcdir)/selftest/knownfail | \
-               $(PERL) $(selftestdir)/format-subunit.pl --format=$(SELFTEST_FORMAT) \
-               --immediate
+               $(PERL) $(selftestdir)/format-subunit --immediate
 
 selftest-%:
        $(MAKE) selftest TESTS=$*
index 04d42d279c9884deb8c8c245ac54f95db945d01e..4359585e9e26553eee77bfcd74cb98513774a2fc 100644 (file)
@@ -1,5 +1,3 @@
-TEST_FORMAT = plain
-
 SELFTEST = $(LD_LIBPATH_OVERRIDE) PYTHON=$(PYTHON) \
     $(PERL) $(selftestdir)/selftest.pl --prefix=${selftest_prefix} \
     --builddir=$(builddir) --srcdir=$(srcdir) \
@@ -16,7 +14,7 @@ ST_DONE_TEST = @test -f $(selftest_prefix)/st_done || { echo "SELFTEST FAILED";
 SELFTEST_NOSLOW_OPTS = --exclude=$(srcdir)/selftest/slow
 SELFTEST_QUICK_OPTS = $(SELFTEST_NOSLOW_OPTS) --quick --include=$(srcdir)/selftest/quick
 FILTER_XFAIL = $(PERL) $(selftestdir)/filter-subunit.pl --expected-failures=$(srcdir)/selftest/knownfail
-SUBUNIT_FORMATTER ?= $(PERL) $(selftestdir)/format-subunit.pl --prefix=${selftest_prefix} --format=$(TEST_FORMAT) --immediate
+SUBUNIT_FORMATTER ?= $(PERL) $(selftestdir)/format-subunit --prefix=${selftest_prefix} --immediate
 FORMAT_TEST_OUTPUT = $(FILTER_XFAIL) | $(SUBUNIT_FORMATTER)
 
 test-subunit:: everything