summaryrefslogtreecommitdiff
path: root/check-all
diff options
context:
space:
mode:
Diffstat (limited to 'check-all')
-rwxr-xr-xcheck-all29
1 files changed, 29 insertions, 0 deletions
diff --git a/check-all b/check-all
new file mode 100755
index 0000000..b8d2f17
--- /dev/null
+++ b/check-all
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+set -eu
+
+tarball="$1"
+
+tryit()
+{
+ local image="$1"
+ local yaml="$2"
+ echo "Testing $image"
+ ./vmdb2 --rootfs-tarball "$tarball" \
+ --verbose \
+ --log check.log \
+ --output "$image" \
+ "$yaml"
+ echo
+}
+
+
+#tryit simple.img simple.vmdb
+#tryit luks.img luks.vmdb
+#tryit lvm2.img lvm2.vmdb
+
+tryit pc.img pc.vmdb
+tryit uefi.img uefi.vmdb
+tryit ansible.img ansible.vmdb
+tryit smoke-pc.img smoke-pc.vmdb
+tryit smoke-uefi.img smoke-uefi.vmdb