summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-07-25 17:05:14 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-07-25 17:05:14 +0200
commitbcab7f807d2ea44668ac948bc0e270c66dc3865d (patch)
treeabae283f03346db1ce9e96773337fed86d314565 /tests
parent0ba67f78736ed8f0c642816c735fcad2701a50dc (diff)
tests: Call imag binaries with config override for implicit store creation
Diffstat (limited to 'tests')
-rw-r--r--tests/utils.sh2
1 files changed, 1 insertions, 1 deletions
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 $*
}