diff options
author | Jim Meyering <jim@meyering.net> | 1997-06-25 16:08:03 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-06-25 16:08:03 +0000 |
commit | 4378dcecdf3f131586470f46c8ef023566b517fd (patch) | |
tree | b284f46d46c7e3692da53ff12b9dddc76bd1a642 /tests/date | |
parent | fa4894b30c929a378bf38305101e901417959881 (diff) | |
download | coreutils-4378dcecdf3f131586470f46c8ef023566b517fd.tar.xz |
.
Diffstat (limited to 'tests/date')
-rw-r--r-- | tests/date/Makefile.in | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/tests/date/Makefile.in b/tests/date/Makefile.in index b8f340d2b..72745f48f 100644 --- a/tests/date/Makefile.in +++ b/tests/date/Makefile.in @@ -1,6 +1,6 @@ -# Makefile.in generated automatically by automake 1.1p from Makefile.am +# Makefile.in generated automatically by automake 1.2 from Makefile.am -# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. @@ -49,10 +49,6 @@ POST_INSTALL = true NORMAL_UNINSTALL = true PRE_UNINSTALL = true POST_UNINSTALL = true -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ @@ -168,24 +164,27 @@ check-TESTS: $(TESTS) @failed=0; all=0; \ srcdir=$(srcdir); export srcdir; \ for tst in $(TESTS); do \ - all=`expr $$all + 1`; \ if test -f $$tst; then dir=.; \ else dir="$(srcdir)"; fi; \ if $(TESTS_ENVIRONMENT) $$dir/$$tst; then \ + all=`expr $$all + 1`; \ echo "PASS: $$tst"; \ - else \ + elif test $$? -ne 77; then \ + all=`expr $$all + 1`; \ failed=`expr $$failed + 1`; \ echo "FAIL: $$tst"; \ fi; \ done; \ if test "$$failed" -eq 0; then \ - echo "========================"; \ - echo "All $$all tests passed"; \ - echo "========================"; \ + banner="All $$all tests passed"; \ else \ - echo "$$failed of $$all tests failed"; \ - exit 1; \ - fi + banner="$$failed of $$all tests failed"; \ + fi; \ + dashes=`echo "$$banner" | sed s/./=/g`; \ + echo "$$dashes"; \ + echo "$$banner"; \ + echo "$$dashes"; \ + test "$$failed" -eq 0 info: dvi: check: all @@ -205,7 +204,7 @@ uninstall: all: Makefile $(SCRIPTS) install-strip: - $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install + $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install installdirs: |