summaryrefslogtreecommitdiffstats
path: root/test-ipxe.sh
blob: dcfbdbad7108f4acc4bad688ee882302fbab3643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
cd $(dirname $0)

echo "=== prepare ==="
sh libvirt-setup.sh

echo "=== run tests ==="
python3 test-ipxe.py -v
rc="$?"

echo "=== cleanup ==="
sh libvirt-cleanup.sh

echo "=== done ==="
exit $rc