Files
mgmt/test/shell/t7.sh
James Shubin c1605a4f22 Add test case for urfave regression
Credit to jerith for helping me hack this together :)
2016-07-25 20:25:08 -04:00

10 lines
206 B
Bash
Executable File

#!/bin/bash -e
# run empty graph
timeout --kill-after=20s 15s ./mgmt run &
pid=$!
sleep 5s # let it converge
$(sleep 3s && killall -SIGINT mgmt)& # send ^C to exit mgmt
wait $pid # get exit status
exit $?