1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-27 03:21:49 +02:00

build: marionette: Make it possible to reboot VM during tests.

* gnu/build/marionette.scm (make-marionette): Add 'reconnect=1' socket
parameter.
* gnu/system/vm.scm (common-qemu-options): Remove '-no-reboot' option.

Change-Id: I5e100543ddddba0aea3ebe4e2f5cb8b0261c0d73
This commit is contained in:
Maxim Cournoyer
2024-11-01 10:56:30 +09:00
parent ae0d335744
commit 5074871043
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ QEMU monitor and to the guest's backdoor REPL."
(list "-nographic"
"-monitor" (string-append "unix:" socket-directory "/monitor")
"-chardev" (string-append "socket,id=repl,path=" socket-directory
"/repl")
"/repl,reconnect=1")
"-chardev" (string-append "socket,id=qga,server=on,wait=off,path="
socket-directory "/qemu-ga")
-1
View File
@@ -227,7 +227,6 @@ with '-virtfs' options for the host file systems listed in SHARED-FS."
'("-enable-kvm")
'())
"-no-reboot"
"-object" "rng-random,filename=/dev/urandom,id=guix-vm-rng"
"-device" "virtio-rng-pci,rng=guix-vm-rng"