I noticed that the output of "make check" ended with this text:

PASS: test
==================
All 1 tests passed
==================

because "make check" finished up with examples/calc++, which has one
test.  This is a little disconcerting, since Bison has a lot more than
one test.  Akim, did you intend to add that test case in a different
directory?

Anyway, I worked around the problem this way:

2005-07-24  Paul Eggert  <[EMAIL PROTECTED]>

        * Makefile.am (SUBDIRS): Put examples before tests, so that
        "make check" doesn't finish with "All 1 tests passed".

--- Makefile.am 22 Jul 2005 23:02:50 -0000      1.38
+++ Makefile.am 25 Jul 2005 06:45:32 -0000      1.39
@@ -18,7 +18,7 @@
 
 ACLOCAL_AMFLAGS = -I m4
 
-SUBDIRS = config po runtime-po lib data src doc tests examples
+SUBDIRS = config po runtime-po lib data src doc examples tests
 
 # Files installed for use by Automake.
 aclocaldir = @aclocaldir@


Reply via email to