tests: Installation test no longer requires KVM.

* gnu/tests/install.scm (%test-installed-os): Use '-enable-kvm' only
when /dev/kvm exists.
This commit is contained in:
Ludovic Courtès 2016-06-23 00:12:13 +02:00
parent f10dcbf1a9
commit f6d5456b1b
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -200,9 +200,12 @@ (define %test-installed-os
(format #t "copying image '~a'...~%" image)
(copy-file image "disk.img")
(chmod "disk.img" #o644)
(list (string-append #$qemu-minimal "/bin/"
`(,(string-append #$qemu-minimal "/bin/"
#$(qemu-command system))
"-enable-kvm" "-no-reboot" "-m" "256"
,@(if (file-exists? "/dev/kvm")
'("-enable-kvm")
'())
"-no-reboot" "-m" "256"
"-drive" "file=disk.img,if=virtio"))
"installed-os")))))