diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2024-07-01 11:56:18 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2024-07-01 11:56:18 +0200 |
commit | b56b7555ecbf3d9e0e688861afd8e66782045d61 (patch) | |
tree | 21233554a7aa431e0e471f41c3735884c59040e5 | |
parent | 29bec47ca49f518363dbafad5d7d8206379688f8 (diff) | |
download | ipxe-tests-b56b7555ecbf3d9e0e688861afd8e66782045d61.tar.gz |
make test script a bit more verbose
-rw-r--r-- | test-ipxe.sh | 8 |
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 |