summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-04-28 06:06:21 (GMT)
committerAlexey Neyman <stilor@att.net>2018-04-29 19:06:54 (GMT)
commit270eb003dc5326d7da0e48aded355467f08f176c (patch)
treeafcc36cf598f42bec8b63ac31cf413a381b8f448 /testing
parentf6d8c2ffbd15197baeeabbb5dae836c6df0d234f (diff)
Update help
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'testing')
-rwxr-xr-xtesting/docker/dmgr.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/docker/dmgr.sh b/testing/docker/dmgr.sh
index 74539b4..1f2b120 100755
--- a/testing/docker/dmgr.sh
+++ b/testing/docker/dmgr.sh
@@ -24,6 +24,9 @@ ${1:+ERROR :: $1
Action is one of:
build Build or rebuild the specified containers.
+ test Run tests (build-all).
+ enter Spawn a shell in the specified container.
+ clean Clean up in the specified container.
If containers are not specified, the action is applied to all available containers.
EOF
@@ -97,7 +100,7 @@ selected_containers="${*:-${all_containers}}"
case "${action}" in
build|test|enter|clean)
for c in ${selected_containers}; do
- eval "action_${action} $c"
+ eval "action_${action} ${c}"
done
;;
"")