From: Fred L. Drake, Jr. Date: Fri, 17 Aug 2001 19:23:02 +0000 (+0000) Subject: Update so the tests will be run by "make check". X-Git-Tag: R_1_95_3~135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b48c6919bb7ab00cbe8e33f3f64fe0fd2458a5ab;p=libexpat Update so the tests will be run by "make check". --- diff --git a/expat/Makefile.in b/expat/Makefile.in index e77b64c4..25351c65 100644 --- a/expat/Makefile.in +++ b/expat/Makefile.in @@ -140,9 +140,7 @@ distdir: MANIFEST done check: $(SUBDIRS) - @echo - @echo This package does not yet have a regression test. - @echo + (cd tests && $(MAKE) check) $(DISTRIBUTION): distdir tar cf - $(DISTDIR) | gzip -9 >$(DISTRIBUTION) diff --git a/expat/configure.in b/expat/configure.in index 9b84077f..d2d8bbba 100644 --- a/expat/configure.in +++ b/expat/configure.in @@ -108,4 +108,7 @@ fi if test -d ${srcdir}/examples; then OUTPUT="$OUTPUT examples/Makefile" fi +if test -d ${srcdir}/tests; then + OUTPUT="$OUTPUT tests/Makefile" +fi AC_OUTPUT($OUTPUT)