summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-12-26 11:22:39 +0200
committerLars Wirzenius <liw@liw.fi>2019-12-26 18:15:36 +0200
commit1ebbb1b7234982779e393d870eb03e9477317600 (patch)
tree0bc4dc38537ae84c6d610be7c3158b5d0f1f60a0
parent9834c2105220c8a925ec6afdac1ce2003636ac31 (diff)
downloadvmdb2-1ebbb1b7234982779e393d870eb03e9477317600.tar.gz
Change: allow user to specify which test images to build
-rwxr-xr-xcheck-all3
1 files changed, 2 insertions, 1 deletions
diff --git a/check-all b/check-all
index a38fe05..b7c193f 100755
--- a/check-all
+++ b/check-all
@@ -3,6 +3,7 @@
set -eu
tarball="$1"
+shift
tryit()
{
@@ -24,7 +25,7 @@ cd "$src"
#tryit luks.img "$src/luks.vmdb"
#tryit lvm2.img "$src/lvm2.vmdb"; exit
-for x in pc uefi ansible smoke-pc smoke-uefi
+for x in "$@" pc uefi ansible smoke-pc smoke-uefi
do
tryit "$dst/$x.img" "$x.vmdb"
done