From bcab7f807d2ea44668ac948bc0e270c66dc3865d Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 25 Jul 2016 17:05:14 +0200 Subject: [PATCH] tests: Call imag binaries with config override for implicit store creation --- tests/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.sh b/tests/utils.sh index 6fc23ad8..61aa5b87 100644 --- a/tests/utils.sh +++ b/tests/utils.sh @@ -37,7 +37,7 @@ imag-call-binary() { local binary=$1; shift [[ -d $searchdir ]] || { err "FATAL: No directory $searchdir"; exit 1; } local bin=$(find $searchdir -iname $binary -type f -executable) - local flags="--debug --rtp $RUNTIME" + local flags="--override-config store.implicit-create=true --debug --rtp $RUNTIME" out "Calling '$bin $flags $*'" $bin $flags $* }