summaryrefslogtreecommitdiffstats
path: root/test-ipxe.sh
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2024-07-01 11:56:18 +0200
committerGerd Hoffmann <kraxel@redhat.com>2024-07-01 11:56:18 +0200
commitb56b7555ecbf3d9e0e688861afd8e66782045d61 (patch)
tree21233554a7aa431e0e471f41c3735884c59040e5 /test-ipxe.sh
parent29bec47ca49f518363dbafad5d7d8206379688f8 (diff)
downloadipxe-tests-b56b7555ecbf3d9e0e688861afd8e66782045d61.tar.gz
make test script a bit more verbose
Diffstat (limited to 'test-ipxe.sh')
-rw-r--r--test-ipxe.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-ipxe.sh b/test-ipxe.sh
index c1ca3e1..dcfbdba 100644
--- a/test-ipxe.sh
+++ b/test-ipxe.sh
@@ -1,7 +1,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