# A command that, given a newline-separated list of test names on the
# standard input, create the global log from their .trs and .log files.
-am__create_global_log = $(AWK) ' \
+am.test-suite.create-global-log = $(AWK) ' \
$(am.test-suite.awk-functions) \
function rst_section(header) \
{ \
echo; \
echo ".. contents:: :depth: 2"; \
echo; \
- $(am__create_global_log) <$$workdir/bases; \
+ $(am.test-suite.create-global-log) <$$workdir/bases; \
} >$(TEST_SUITE_LOG).tmp; then \
mv -f $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
else \
-## The awk program in $(am__create_global_log) should have already emitted
-## a proper error message about I/O error, no need to repeat it.
+## The awk program in $(am.test-suite.create-global-log) should have already
+## emitted a proper error message about I/O error, no need to repeat it.
rm -f $(TEST_SUITE_LOG).tmp; exit 1; \
fi; \
## Emit the test summary on the console.