From 1f4d8c22ebc0bd4e7f9ec11ae371575d99b1e1a1 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 25 Jul 2012 20:20:09 +0200 Subject: [PATCH] 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 --- t/ax/test-init.sh | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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 -- 2.47.2