check.am (automake-1.16.2.tar.xz) | : | check.am (automake-1.16.3.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 246 | skipping to change at line 246 | |||
.log.trs: | .log.trs: | |||
rm -f $< $@ | rm -f $< $@ | |||
$(MAKE) $(AM_MAKEFLAGS) $< | $(MAKE) $(AM_MAKEFLAGS) $< | |||
# Leading 'am--fnord' is there to ensure the list of targets does not | # Leading 'am--fnord' is there to ensure the list of targets does not | |||
# expand to empty, as could happen e.g. with make check TESTS=''. | # expand to empty, as could happen e.g. with make check TESTS=''. | |||
am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) | am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) | |||
am--force-recheck: | am--force-recheck: | |||
@: | @: | |||
## Exists only to be overridden. See bug#11745. | ||||
AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING)' | ||||
$(TEST_SUITE_LOG): $(TEST_LOGS) | $(TEST_SUITE_LOG): $(TEST_LOGS) | |||
@$(am__set_TESTS_bases); \ | @$(am__set_TESTS_bases); \ | |||
## Helper shell function, tells whether a path refers to an existing, | ## Helper shell function, tells whether a path refers to an existing, | |||
## regular, readable file. | ## regular, readable file. | |||
am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ | am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ | |||
## We need to ensures that all the required '.trs' and '.log' files will | ## We need to ensures that all the required '.trs' and '.log' files will | |||
## be present and readable. The direct dependencies of $(TEST_SUITE_LOG) | ## be present and readable. The direct dependencies of $(TEST_SUITE_LOG) | |||
## only ensure that all the '.log' files exists; they don't ensure that | ## only ensure that all the '.log' files exists; they don't ensure that | |||
## the '.log' files are readable, and worse, they don't ensure that the | ## the '.log' files are readable, and worse, they don't ensure that the | |||
## '.trs' files even exist. | ## '.trs' files even exist. | |||
skipping to change at line 378 | skipping to change at line 381 | |||
## Emit the test summary on the console. | ## Emit the test summary on the console. | |||
if $$success; then \ | if $$success; then \ | |||
col="$$grn"; \ | col="$$grn"; \ | |||
else \ | else \ | |||
col="$$red"; \ | col="$$red"; \ | |||
test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ | test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ | |||
fi; \ | fi; \ | |||
## Multi line coloring is problematic with "less -R", so we really need | ## Multi line coloring is problematic with "less -R", so we really need | |||
## to color each line individually. | ## to color each line individually. | |||
echo "$${col}$$br$${std}"; \ | echo "$${col}$$br$${std}"; \ | |||
echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ | echo "$${col}Testsuite summary"$(AM_TESTSUITE_SUMMARY_HEADER)"$${std}"; \ | |||
echo "$${col}$$br$${std}"; \ | echo "$${col}$$br$${std}"; \ | |||
## This is expected to go to the console, so it might have to be colorized. | ## This is expected to go to the console, so it might have to be colorized. | |||
create_testsuite_report --maybe-color; \ | create_testsuite_report --maybe-color; \ | |||
echo "$$col$$br$$std"; \ | echo "$$col$$br$$std"; \ | |||
if $$success; then :; else \ | if $$success; then :; else \ | |||
echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ | echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ | |||
if test -n "$(PACKAGE_BUGREPORT)"; then \ | if test -n "$(PACKAGE_BUGREPORT)"; then \ | |||
echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ | echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ | |||
fi; \ | fi; \ | |||
echo "$$col$$br$$std"; \ | echo "$$col$$br$$std"; \ | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 4 lines changed or added |