Files
mgmt/test/shell/t1.sh
2018-02-18 14:19:05 -05:00

16 lines
476 B
Bash
Executable File

#!/bin/bash -e
# NOTES:
# * this is a simple shell based `mgmt` test case
# * it is recommended that you run mgmt wrapped in the timeout command
# * it is recommended that you run mgmt with --no-watch
# * it is recommended that you run mgmt --converged-timeout=<seconds>
# * you can run mgmt with --max-runtime=<seconds> in special scenarios
set -o errexit
set -o pipefail
$timeout --kill-after=3s 1s "$MGMT" --help # hello world!
pid=$!
wait $pid # get exit status
exit $?