From: John Darrington Date: Sat, 14 Jan 2017 10:15:12 +0000 (+0100) Subject: tests: Ensure that the testsuite is of non-zero size X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d624ff25b9f1eba7b14f4af500e797144f071210;p=pspp tests: Ensure that the testsuite is of non-zero size --- diff --git a/tests/automake.mk b/tests/automake.mk index db14a142d9..5158fee56d 100644 --- a/tests/automake.mk +++ b/tests/automake.mk @@ -427,6 +427,7 @@ AUTOM4TE = $(SHELL) $(srcdir)/build-aux/missing --run autom4te AUTOTEST = $(AUTOM4TE) --language=autotest $(TESTSUITE): package.m4 $(srcdir)/tests/testsuite.at $(TESTSUITE_AT) $(AM_V_GEN)$(AUTOTEST) -I '$(srcdir)' $@.at | $(SED) 's/@<00A0>@/ /g' > $@.tmp + test -s $@.tmp $(AM_V_at)mv $@.tmp $@ # The `:;' works around a Bash 3.2 bug when the output is not writeable.