tests: Fix incorrect use of 'file-append'.
Fixes a regression introduced in fbc7b1f125
.
* gnu/tests/install.scm (run-install)[install]: Don't use 'file-append'
with a string as its first argument; use a gexp with 'string-append' instead.
Use a gexp instead of a list for "-cdrom IMG".
This commit is contained in:
parent
cd1ad27e6c
commit
4e39604111
@ -238,11 +238,11 @@ packages defined in installation-os."
|
||||
"-m" "800"
|
||||
#$@(cond
|
||||
((string=? "ext4" installation-disk-image-file-system-type)
|
||||
`("-drive"
|
||||
,(file-append "file=" image
|
||||
",if=virtio,readonly")))
|
||||
#~("-drive"
|
||||
,(string-append "file=" #$image
|
||||
",if=virtio,readonly")))
|
||||
((string=? "iso9660" installation-disk-image-file-system-type)
|
||||
`("-cdrom" ,image))
|
||||
#~("-cdrom" #$image))
|
||||
(else
|
||||
(error
|
||||
"unsupported installation-disk-image-file-system-type:"
|
||||
|
Loading…
Reference in New Issue
Block a user