summaryrefslogtreecommitdiff
path: root/lib/Automake/tests
diff options
context:
space:
mode:
authorAlexandre Duret-Lutz <adl@gnu.org>2004-05-13 20:14:08 +0000
committerAlexandre Duret-Lutz <adl@gnu.org>2004-05-13 20:14:08 +0000
commit4978246f8abc391a1e2b04ee51c635cf3609a82f (patch)
treef174bea021e8483afca054cdc54334f3f130de4e /lib/Automake/tests
parent505b61509f20d87c481d2963cb81cf24138f5c45 (diff)
downloadautomake-4978246f8abc391a1e2b04ee51c635cf3609a82f.tar.gz
regen
Diffstat (limited to 'lib/Automake/tests')
-rw-r--r--lib/Automake/tests/Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Automake/tests/Makefile.in b/lib/Automake/tests/Makefile.in
index 1c03540c9..527187936 100644
--- a/lib/Automake/tests/Makefile.in
+++ b/lib/Automake/tests/Makefile.in
@@ -220,20 +220,20 @@ check-TESTS: $(TESTS)
skipped=""; \
if test "$$skip" -ne 0; then \
skipped="($$skip tests were not run)"; \
- test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \
+ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
dashes="$$skipped"; \
fi; \
report=""; \
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
report="Please report to $(PACKAGE_BUGREPORT)"; \
- test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \
+ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
dashes="$$report"; \
fi; \
dashes=`echo "$$dashes" | sed s/./=/g`; \
echo "$$dashes"; \
echo "$$banner"; \
- test -n "$$skipped" && echo "$$skipped"; \
- test -n "$$report" && echo "$$report"; \
+ test -z "$$skipped" || echo "$$skipped"; \
+ test -z "$$report" || echo "$$report"; \
echo "$$dashes"; \
test "$$failed" -eq 0; \
else :; fi