Files
mgmt/test/shell/t5b.sh
James Shubin 8be09eadd4 test: Fix up probable timeout failures due to slow ci
We had *occasional* failures most likely due to slow ci and compounded
by low entropy. We also weren't pointing at the right test!
2017-02-22 23:08:09 -05:00

8 lines
244 B
Bash
Executable File

#!/bin/bash -e
# should take slightly more than 35s, but fail if we take much longer)
$timeout --kill-after=55s 50s ./mgmt run --yaml t5b.yaml --converged-timeout=5 --no-watch --no-pgp --tmp-prefix &
pid=$!
wait $pid # get exit status
exit $?