diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/guix-system.sh | 11 | ||||
-rw-r--r-- | tests/import-utils.scm | 4 |
2 files changed, 10 insertions, 5 deletions
diff --git a/tests/guix-system.sh b/tests/guix-system.sh index 29e490c3d4..99147cf332 100644 --- a/tests/guix-system.sh +++ b/tests/guix-system.sh @@ -1,5 +1,5 @@ # GNU Guix --- Functional package management for GNU -# Copyright © 2014-2022 Ludovic Courtès <[email protected]> +# Copyright © 2014-2022, 2024 Ludovic Courtès <[email protected]> # Copyright © 2017 Tobias Geerinckx-Rice <[email protected]> # Copyright © 2018 Chris Marusich <[email protected]> # @@ -355,17 +355,22 @@ for example in gnu/system/examples/*.tmpl; do # Skip it. continue ;; + *desktop*) + # This image uses 'grub-efi-bootloader' so it needs a GPT + # partition. + options="-t efi-raw --system=x86_64-linux";; *) options="" ;; esac - guix system -n disk-image $options "$example" + guix system -n image $options "$example" done # Make sure the desktop image can be built on major architectures. for system in x86_64-linux aarch64-linux do - guix system -n image -s "$system" gnu/system/examples/desktop.tmpl + guix system -n image -s "$system" -t efi-raw \ + gnu/system/examples/desktop.tmpl done # Verify that the images can be built. diff --git a/tests/import-utils.scm b/tests/import-utils.scm index efc66576b1..bec38b0c30 100644 --- a/tests/import-utils.scm +++ b/tests/import-utils.scm @@ -42,8 +42,8 @@ Trust me Mr. Hendrix, M. Night Shyamalan et al. \ Differences are hard to spot, e.g. in CLOS vs. GOOPS.")) (test-equal "beautify-description: transform fragment into sentence" - "This package provides a function to establish world peace" - (beautify-description "A function to establish world peace.")) + "This package provides a function to establish world peace." + (beautify-description "A function to establish world peace")) (test-equal "beautify-description: remove single quotes" "CRAN likes to quote acronyms and function names." |