On Sunday 14 August 2011, Stefano Lattarini wrote: > * tests/tap-missing-plan-and-bad-exit.test: New test. > * tests/Makefile.am (tap_with_common_setup_tests): Update. > --- > ChangeLog | 6 ++++ > tests/Makefile.am | 1 + > tests/tap-missing-plan-and-bad-exit.test | 43 > ++++++++++++++++++++++++++++++ > 3 files changed, 50 insertions(+), 0 deletions(-) > create mode 100755 tests/tap-missing-plan-and-bad-exit.test > > diff --git a/ChangeLog b/ChangeLog > index bf629e1..2cb53d4 100644 > --- a/ChangeLog > +++ b/ChangeLog > @@ -1,3 +1,9 @@ > +2011-08-14 Stefano Lattarini <[email protected]> > + > + coverage: missing tap plan and non-zero exit status > + * tests/tap-missing-plan-and-bad-exit.test: New test. > + * tests/Makefile.am (tap_with_common_setup_tests): Update. > + > 2011-08-12 Stefano Lattarini <[email protected]> > > testsuite: fix an unportable use of sed > diff --git a/tests/Makefile.am b/tests/Makefile.am > index 7af1eb6..59a6d14 100644 > --- a/tests/Makefile.am > +++ b/tests/Makefile.am > @@ -1177,6 +1177,7 @@ tap-plan.test \ > tap-plan-corner.test \ > tap-plan-errors.test \ > tap-plan-middle.test \ > +tap-missing-plan-and-bad-exit.test \ > tap-planskip.test \ > tap-planskip-late.test \ > tap-planskip-and-logging.test \ > And obviously I had forgotten again to regenerate tests/Makefile.in. Sigh. Fixed by the attached follow-up patch.
Sorry for the noise, Stefano
From 5c210551131a0fc50d0e1af21843b35df46ffdbf Mon Sep 17 00:00:00 2001 Message-Id: <5c210551131a0fc50d0e1af21843b35df46ffdbf.1313575700.git.stefano.lattar...@gmail.com> From: Stefano Lattarini <[email protected]> Date: Wed, 17 Aug 2011 12:07:35 +0200 Subject: [PATCH] fix: regenerate tests/Makefile.in --- tests/Makefile.in | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/tests/Makefile.in b/tests/Makefile.in index e294596..f8e7fe8 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -1417,6 +1417,7 @@ tap-plan.test \ tap-plan-corner.test \ tap-plan-errors.test \ tap-plan-middle.test \ +tap-missing-plan-and-bad-exit.test \ tap-planskip.test \ tap-planskip-late.test \ tap-planskip-and-logging.test \ -- 1.7.2.3
