tests: Installation test no longer requires KVM.
authorLudovic Courtès <ludo@gnu.org>
Wed, 22 Jun 2016 22:12:13 +0000 (00:12 +0200)
committerLudovic Courtès <ludo@gnu.org>
Wed, 22 Jun 2016 22:12:13 +0000 (00:12 +0200)
* gnu/tests/install.scm (%test-installed-os): Use '-enable-kvm' only
when /dev/kvm exists.

gnu/tests/install.scm

index c33919b..5d893de 100644 (file)
@@ -200,10 +200,13 @@ build (current-guix) and then store a couple of full system images.")
                           (format #t "copying image '~a'...~%" image)
                           (copy-file image "disk.img")
                           (chmod "disk.img" #o644)
-                          (list (string-append #$qemu-minimal "/bin/"
-                                               #$(qemu-command system))
-                                "-enable-kvm" "-no-reboot" "-m" "256"
-                                "-drive" "file=disk.img,if=virtio"))
+                          `(,(string-append #$qemu-minimal "/bin/"
+                                            #$(qemu-command system))
+                            ,@(if (file-exists? "/dev/kvm")
+                                  '("-enable-kvm")
+                                  '())
+                            "-no-reboot" "-m" "256"
+                            "-drive" "file=disk.img,if=virtio"))
                       "installed-os")))))
 
 ;;; install.scm ends here