summaryrefslogtreecommitdiff
path: root/ubuntu/scripts/qemu-edk2-boot.expect
diff options
context:
space:
mode:
Diffstat (limited to 'ubuntu/scripts/qemu-edk2-boot.expect')
-rwxr-xr-xubuntu/scripts/qemu-edk2-boot.expect29
1 files changed, 29 insertions, 0 deletions
diff --git a/ubuntu/scripts/qemu-edk2-boot.expect b/ubuntu/scripts/qemu-edk2-boot.expect
new file mode 100755
index 0000000..62300b0
--- /dev/null
+++ b/ubuntu/scripts/qemu-edk2-boot.expect
@@ -0,0 +1,29 @@
+#!/usr/bin/expect --
+#
+# Run qemu-system and check we can boot and shutdown
+#
+
+if {[llength $argv] == 0} {
+ send_user "Usage: boot.expect <qemu invocation>\n"
+ exit 1
+}
+
+set timeout 180
+spawn {*}$argv
+expect {
+ "buildroot login: " { send -- "root\r" }
+ timeout { send "# boot failed"; exit 1 }
+}
+
+
+expect "# "
+send -- "uname -a\r"
+expect "# "
+set timeout 10
+send -- "halt -d 5\r"
+expect {
+ "reboot: System halted" { send -- "c"; expect "(qemu) "; send -- "quit\r" }
+ timeout { send "# shutdown failed"; exit 2 }
+}
+expect eof
+exit 0