mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
tests: Pass '-F qcow2' to 'qemu-img create'.
Fixes a regression introduced in
0b5e128750
, whereby 'qemu-img create ...'
as used here would fail with:
qemu-img: disk.img: Backing file specified without backing format
thereby breaking tests from (gnu tests install).
* gnu/tests/install.scm (qemu-command/writable-image): Pass "-F qcow2".
This commit is contained in:
parent
3fa778b561
commit
3fbf38aca2
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2017, 2019, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||
;;; Copyright © 2020 Danny Milosavljevic <dannym@scratchpost.org>
|
||||
|
@ -355,7 +355,7 @@ (define* (qemu-command/writable-image image
|
|||
(format #t "creating writable image from '~a'...~%" image)
|
||||
(unless (zero? (system* #+(file-append qemu-minimal
|
||||
"/bin/qemu-img")
|
||||
"create" "-f" "qcow2"
|
||||
"create" "-f" "qcow2" "-F" "qcow2"
|
||||
"-o"
|
||||
(string-append "backing_file=" image)
|
||||
"disk.img"))
|
||||
|
|
Loading…
Reference in a new issue