* Check and install libvirt with Homebrew
macOS does not have apt, dnf or yum. Add checking for homebrew for
installing libvirt.
* Use platform timeout for tests
* Add timeout detection to test/util.sh
* Use $timeout for shell test requiring timeout
32 lines
586 B
Bash
Executable File
32 lines
586 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# FIXME: test for #124 --- Disabled for now
|
|
|
|
exit 0
|
|
|
|
mkdir -p /tmp/mgmt/a/b/c/
|
|
|
|
# run empty graph, with prometheus support
|
|
$timeout --kill-after=20s 15s ./mgmt run --tmp-prefix --yaml=examples/deep-dirs.yaml &
|
|
pid=$!
|
|
sleep 5s # 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 $?
|