It was a bit awkward using `mgmt run lang --lang <input>` so instead, we now drop the --lang, and read the positional argv for the input. This also does the same for the --yaml frontend.
30 lines
588 B
Bash
Executable File
30 lines
588 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
. "$(dirname "$0")/../util.sh"
|
|
|
|
# run till completion
|
|
$TIMEOUT "$MGMT" run --no-watch --tmp-prefix yaml t6.yaml &
|
|
pid=$!
|
|
sleep 10s # let it converge
|
|
test -e /tmp/mgmt/f1
|
|
test -e /tmp/mgmt/f2
|
|
test -e /tmp/mgmt/f3
|
|
test ! -e /tmp/mgmt/f4
|
|
rm -f /tmp/mgmt/f2
|
|
sleep 1s # let it converge or tests will fail
|
|
test -e /tmp/mgmt/f2
|
|
rm -f /tmp/mgmt/f2
|
|
sleep 1s
|
|
test -e /tmp/mgmt/f2
|
|
echo foo > /tmp/mgmt/f2
|
|
sleep 1s
|
|
test "`cat /tmp/mgmt/f2`" = "i am f2"
|
|
rm -f /tmp/mgmt/f2
|
|
sleep 1s
|
|
test -e /tmp/mgmt/f2
|
|
|
|
killall -SIGINT mgmt # send ^C to exit mgmt
|
|
|
|
wait $pid # get exit status
|
|
exit $?
|