summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-07-25 18:23:16 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-07-25 18:23:16 +0200
commitf999c912836ad2e1667143a6187a1e32bcd196f5 (patch)
tree7c75ac1ebf77209576d89d6635dec7ca53af2899 /tests
parentbcab7f807d2ea44668ac948bc0e270c66dc3865d (diff)
tests: Add --config setting
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 61aa5b87..e0153bdd 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="--override-config store.implicit-create=true --debug --rtp $RUNTIME"
+ local flags="--config ./imagrc.toml --override-config store.implicit-create=true --debug --rtp $RUNTIME"
out "Calling '$bin $flags $*'"
$bin $flags $*
}