From: Stefano Lattarini Date: Wed, 25 Jul 2012 18:20:09 +0000 (+0200) Subject: test init: refactor: new function 'am_setup_testdir' X-Git-Tag: v1.12.3~31^2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f4d8c22ebc0bd4e7f9ec11ae371575d99b1e1a1;p=thirdparty%2Fautomake.git test init: refactor: new function 'am_setup_testdir' * t/ax/test-init.sh (am_setup_testdir): Here. Use it instead of inlining its contents in the main code. Signed-off-by: Stefano Lattarini --- diff --git a/t/ax/test-init.sh b/t/ax/test-init.sh index 2b745dd1e..06079b2ef 100644 --- a/t/ax/test-init.sh +++ b/t/ax/test-init.sh @@ -966,10 +966,8 @@ am_set_exit_traps () am_set_exit_traps -# Create and populate the temporary directory, if and as required. -if test x"$am_create_testdir" = x"no"; then - am_test_subdir= -else +am_setup_testdir () +{ # The subdirectory where the current test script will run and write its # temporary/data files. This will be created shortly, and will be removed # by the cleanup trap below if the test passes. If the test doesn't pass, @@ -1004,6 +1002,13 @@ else echo "AC_CONFIG_FILES([Makefile])" } >configure.ac || framework_failure_ "creating configure.ac skeleton" fi +} + +# Create and populate the temporary directory, if and as required. +if test x"$am_create_testdir" = x"no"; then + am_test_subdir= +else + am_setup_testdir fi