From 62afdc22e6272cf3a6439c855d31961ef6f53e91 Mon Sep 17 00:00:00 2001 From: cvoges12 Date: Mon, 27 Sep 2021 17:52:23 +0000 Subject: [PATCH] added tests to see if disk and qemu are working --- tests/disk.sh | 12 ++++++++++++ tests/qemu.sh | 11 +++++++++++ 2 files changed, 23 insertions(+) create mode 100644 tests/disk.sh create mode 100644 tests/qemu.sh diff --git a/tests/disk.sh b/tests/disk.sh new file mode 100644 index 0000000..e8edb7c --- /dev/null +++ b/tests/disk.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +qemu-system-x86_64 \ + -enable-kvm \ + -cpu host \ + -smp 4 \ + -m 4G \ + -boot d \ + -cdrom Win*.iso \ + -drive file=/dev/sda,format=raw,cache=none,if=virtio \ + -vga virtio \ + -monitor stdio diff --git a/tests/qemu.sh b/tests/qemu.sh new file mode 100644 index 0000000..afb182b --- /dev/null +++ b/tests/qemu.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +qemu-system-x86_64 \ + -enable-kvm \ + -cpu host \ + -smp 4 \ + -m 4G \ + -boot d \ + -cdrom Win*.iso \ + -vga virtio \ + -monitor stdio