Bash 4.2.0(1)-release, which we use during bootstrap, does not yield the "x" case in: case x"$EMULATION_NAME" in x) ;; *) ;; esac when 'EMULATION_NAME' is undefined. Bash 4.3.30(1)-release doesn't have this problem. Work around it. This Bash bug was fixed in . --- a/ld/emulparams/elf32bmipn32-defs.sh +++ b/ld/emulparams/elf32bmipn32-defs.sh @@ -13,7 +13,7 @@ LITTLE_OUTPUT_FORMAT="elf32-littlemips" TEMPLATE_NAME=elf32 EXTRA_EM_FILE=mipself -case x"$EMULATION_NAME" in +case "x$EMULATION_NAME" in xelf32*n32*) ELFSIZE=32 ;; xelf64*) ELFSIZE=64 ;; x) ;; f8aa13c4a98687371a2dafa63ccc932'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests.scm
AgeCommit message (Expand)Author
2019-03-25accounts: Add default value for the 'home-directory' field of <user-account>....Ludovic Courtès
2018-08-29tests: Warn about test module load failures....Ludovic Courtès
2018-05-28system: Remove uses of the 'title' field of <file-system>....Ludovic Courtès
2018-02-19marionette: Use QEMU's "VM channel" mechanism....Ludovic Courtès
2018-01-09tests: marionette-operating-system: Add initrd parameter and kernel-arguments....Danny Milosavljevic
2017-12-06gnu, doc, tests: Use ‘bootloader-configuration’ everywhere....Tobias Geerinckx-Rice
2017-08-23gnu: bootloader: Deprecate "device" field in favor of "target"....Andy Wingo
2017-05-16bootloader: Add extlinux support....Mathieu Othacehe
2017-05-04tests: Use 'fold-module-public-variables' for discovery....Ludovic Courtès
2017-05-03Add (guix discovery)....Ludovic Courtès
2017-04-01tests: Introduce 'simple-operating-system' and use it....Ludovic Courtès
2016-07-12services: <shepherd-service> no longer has an 'imported-modules' field....Ludovic Courtès
2016-06-27tests: 'marionette-service-type' nows takes a <marionette-configuration>....Ludovic Courtès
2016-06-20tests: Add a mechanism to describe and discover system tests....Ludovic Courtès
2016-06-20tests: Add system installation test....Ludovic Courtès
2016-06-20tests: Fix list of exports in (gnu tests)....Ludovic Courtès