Files
mgmt/test/shell/file-move-upper-dir.sh
James Shubin 43839d1090 all: Switch the --lang syntax to use argv instead
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.
2019-05-05 11:10:47 -04:00

34 lines
597 B
Bash
Executable File

#!/bin/bash -e
# FIXME: test for #124 --- Disabled for now
exit 0
. "$(dirname "$0")/../util.sh"
mkdir -p /tmp/mgmt/a/b/c/
# run empty graph, with prometheus support
$TIMEOUT "$MGMT" run --tmp-prefix yaml examples/deep-dirs.yaml &
pid=$!
sleep 10s # let it converge
grep f1 /tmp/mgmt/a/b/c/f1
echo 'f2!' > /tmp/mgmt/a/b/c/f1
grep f1 /tmp/mgmt/a/b/c/f1
rm -rf /tmp/mgmt/a/b/C/ || true
mv /tmp/mgmt/a/b/c /tmp/mgmt/a/b/C/
mkdir -p /tmp/mgmt/a/b/c
echo 'f2!' > /tmp/mgmt/a/b/c/f1
grep f1 /tmp/mgmt/a/b/c/f1
killall -SIGINT mgmt # send ^C to exit mgmt
wait $pid # get exit status
exit $?