test-driver (automake-1.16.2.tar.xz) | : | test-driver (automake-1.16.3.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 45 | skipping to change at line 45 | |||
{ | { | |||
echo "$0: $*" >&2 | echo "$0: $*" >&2 | |||
print_usage >&2 | print_usage >&2 | |||
exit 2 | exit 2 | |||
} | } | |||
print_usage () | print_usage () | |||
{ | { | |||
cat <<END | cat <<END | |||
Usage: | Usage: | |||
test-driver --test-name=NAME --log-file=PATH --trs-file=PATH | test-driver --test-name NAME --log-file PATH --trs-file PATH | |||
[--expect-failure={yes|no}] [--color-tests={yes|no}] | [--expect-failure {yes|no}] [--color-tests {yes|no}] | |||
[--enable-hard-errors={yes|no}] [--] | [--enable-hard-errors {yes|no}] [--] | |||
TEST-SCRIPT [TEST-SCRIPT-ARGUMENTS] | TEST-SCRIPT [TEST-SCRIPT-ARGUMENTS] | |||
The '--test-name', '--log-file' and '--trs-file' options are mandatory. | The '--test-name', '--log-file' and '--trs-file' options are mandatory. | |||
See the GNU Automake documentation for information. | ||||
END | END | |||
} | } | |||
test_name= # Used for reporting. | test_name= # Used for reporting. | |||
log_file= # Where to save the output of the test script. | log_file= # Where to save the output of the test script. | |||
trs_file= # Where to save the metadata of the test run. | trs_file= # Where to save the metadata of the test run. | |||
expect_failure=no | expect_failure=no | |||
color_tests=no | color_tests=no | |||
enable_hard_errors=yes | enable_hard_errors=yes | |||
while test $# -gt 0; do | while test $# -gt 0; do | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 5 lines changed or added |