From: Dan Streetman Date: Sat, 17 Aug 2019 16:24:00 +0000 (-0400) Subject: test/test-functions: add mkdir to import_initdir X-Git-Tag: v243-rc2~22^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c03df36fe62372222cb7d9ca8f02c894f217413;p=thirdparty%2Fsystemd.git test/test-functions: add mkdir to import_initdir This dir is created by create_empty_image_rootdir, as well as indirectly by some other functions, but it should be created by import_initdir so the newly-exported $initdir exists and can be used immediately without relying on other functions to create it. --- diff --git a/test/test-functions b/test/test-functions index a534fb218d7..03bfcaf972f 100644 --- a/test/test-functions +++ b/test/test-functions @@ -941,6 +941,7 @@ import_testdir() { import_initdir() { initdir=$TESTDIR/root + mkdir -p $initdir export initdir }