From: Stefano Lattarini Date: Fri, 19 Nov 2010 20:16:03 +0000 (+0100) Subject: release-stats: account for more generated tests. X-Git-Tag: ng-0.5a~327^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72e0d8f3b65b2071937e35ba4571684c204f7660;p=thirdparty%2Fautomake.git release-stats: account for more generated tests. * Makefile.am (release-stats): Be sure to take into account all the generated tests, by grepping the test scripts to decide which ones of them are automatically generated. --- diff --git a/ChangeLog b/ChangeLog index 2d0a1457c..fddb01f8d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2010-11-20 Stefano Lattarini + + release-stats: account for more generated tests. + * Makefile.am (release-stats): Be sure to take into account all + the generated tests, by grepping the test scripts to decide which + ones of them are automatically generated. + 2010-11-03 Stefano Lattarini Overhauled and modularized tests in `instspc.test'. diff --git a/Makefile.am b/Makefile.am index a5df10915..1dec51ef3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -658,7 +658,7 @@ release-stats: ps if test . != '$(srcdir)'; then tests="$$tests $(srcdir)/tests/*.test"; \ else :; fi && \ t=`ls -1 $$tests | wc -l` && \ - tgen=`ls -1 $$tests | grep '.-p\.test' | wc -l` && \ + tgen=`grep 'GENERATED AUTOMATICALLY' $$tests | wc -l` && \ today=`date +%Y-%m-%d` && \ echo "add this to the table in doc/automake.texi after verification:" && \ printf '@item %s @tab %-6s @tab %4d @tab %4d @tab %4d @tab %4d %-4s @tab %4d %-4s @tab %3d @tab %d %-4s\n' \ diff --git a/Makefile.in b/Makefile.in index d9cff8697..a721fced9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1334,7 +1334,7 @@ release-stats: ps if test . != '$(srcdir)'; then tests="$$tests $(srcdir)/tests/*.test"; \ else :; fi && \ t=`ls -1 $$tests | wc -l` && \ - tgen=`ls -1 $$tests | grep '.-p\.test' | wc -l` && \ + tgen=`grep 'GENERATED AUTOMATICALLY' $$tests | wc -l` && \ today=`date +%Y-%m-%d` && \ echo "add this to the table in doc/automake.texi after verification:" && \ printf '@item %s @tab %-6s @tab %4d @tab %4d @tab %4d @tab %4d %-4s @tab %4d %-4s @tab %3d @tab %d %-4s\n' \