From: Stefano Lattarini Date: Fri, 6 Jul 2012 21:42:11 +0000 (+0200) Subject: cosmetics: rename t/ax/test-runner => t/ax/runtest X-Git-Tag: v1.12.2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5197aba1d5e1895c28d66703b0b407c991f608fb;p=thirdparty%2Fautomake.git cosmetics: rename t/ax/test-runner => t/ax/runtest The latter is shorter and clearer. Better to do the rename early, before other developers or contributors begin to get used to the 'test-runner' name. * t/ax/test-runner.in: Rename ... * t/ax/runtest.in: ... like this. * Makefile.am, t/README, .gitignore: Adjust. Signed-off-by: Stefano Lattarini --- diff --git a/.gitignore b/.gitignore index 2b9edacf9..4eec957ad 100644 --- a/.gitignore +++ b/.gitignore @@ -37,7 +37,7 @@ /t/wrap/automake-1.* /defs-static /t/testsuite-part.am -/t/ax/test-runner +/t/ax/runtest /t/*-w.tap /t/*-w.sh /t/depcomp-*.tap diff --git a/Makefile.am b/Makefile.am index 7169eee01..9ef2f48c4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -400,16 +400,16 @@ defs-static: defs-static.in Makefile EXTRA_DIST += defs-static.in CLEANFILES += defs-static -t/ax/test-runner: t/ax/test-runner.in Makefile +t/ax/runtest: t/ax/runtest.in Makefile $(AM_V_at)rm -f $@ $@-t - $(AM_V_GEN)in=t/ax/test-runner.in \ + $(AM_V_GEN)in=t/ax/runtest.in \ && $(MKDIR_P) t/ax \ - && $(do_subst) <$(srcdir)/t/ax/test-runner.in >$@-t \ + && $(do_subst) <$(srcdir)/t/ax/runtest.in >$@-t \ && chmod a+x $@-t $(generated_file_finalize) -EXTRA_DIST += t/ax/test-runner.in -CLEANFILES += t/ax/test-runner -noinst_SCRIPTS = t/ax/test-runner +EXTRA_DIST += t/ax/runtest.in +CLEANFILES += t/ax/runtest +noinst_SCRIPTS = t/ax/runtest # If two test scripts have the same basename, they will end up sharing # the same log file, leading to all sort of undefined and undesired diff --git a/t/README b/t/README index f96fefe72..1039d1093 100644 --- a/t/README +++ b/t/README @@ -73,10 +73,10 @@ About the tests with the '.tap' suffix use the TAP protocol. If you want to run a test by hand, you should be able to do so using the - 'test-runner' script: + 'runtest' script: - ./t/ax/test-runner t/nogzip.sh - ./t/ax/test-runner t/add-missing.tap + ./t/ax/runtest t/nogzip.sh + ./t/ax/runtest t/add-missing.tap This will run the test using the correct shell, and should also work in VPATH builds. Note that, to run the TAP tests this way, you'll need to @@ -95,7 +95,7 @@ Supported shells AM_TEST_RUNNER_SHELL=/bin/my-sh make -e check (non-GNU make) # Run a test directly from the command line. - AM_TEST_RUNNER_SHELL=/bin/my-sh ./t/ax/test-runner t/foo.sh + AM_TEST_RUNNER_SHELL=/bin/my-sh ./t/ax/runtest t/foo.sh The test scripts are written with portability in mind, and should run diff --git a/t/ax/test-runner.in b/t/ax/runtest.in similarity index 100% rename from t/ax/test-runner.in rename to t/ax/runtest.in