aboutsummaryrefslogtreecommitdiff
path: root/tests/boot-parameters.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2024-11-26 18:08:51 +0100
committerRicardo Wurmus <rekado@elephly.net>2024-12-03 16:59:50 +0100
commit03d26034e301338a8df8ed4dad97f74c6de4e61e (patch)
tree2223be3fc1b34ae172cb309a08b052de37c6219e /tests/boot-parameters.scm
parent7e9aa79900eb44607812cc36e00c2e47340e2734 (diff)
downloadguix-03d26034e301338a8df8ed4dad97f74c6de4e61e.tar.gz
guix-03d26034e301338a8df8ed4dad97f74c6de4e61e.zip
gnu: r-sessioninfo: Add missing input.
* gnu/packages/cran.scm (r-sessioninfo)[native-inputs]: Add r-mockery. [arguments]: Add phase 'delete-bad-tests. Change-Id: Ib45f9043d985a040d6f296f77166fb45048769cb
Diffstat (limited to 'tests/boot-parameters.scm')
0 files changed, 0 insertions, 0 deletions
sed by Guile would either 1. stop scanning the string or 2. crash with the error "string contains #\\nul character", depending on the locale used. This change works around this limitation by first replacing the NUL character by an unused Unicode code point, doing the substitution, then reverting the replacement. * guix/build/utils.scm (unused-private-use-code-point) (replace-char): New procedures. (substitute): Make use of the above procedures to work around the NUL character regexp engine limitation. * tests/build-utils.scm: Add tests. Co-authored-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Mark H Weaver 2020-11-16Properly deal with build directories containing '~'....Fixes <https://bugs.gnu.org/44626>. Reported by Vagrant Cascadian <vagrant@debian.org>. * tests/build-utils.scm ("wrap-script, simple case"): Pass SCRIPT-CONTENTS to 'display' rather than 'format'. * gnu/services/base.scm (file-system->shepherd-service-name) [valid-characters, mount-point]: New variables. Filter out invalid store file name characters from the mount point of FILE-SYSTEM. Ludovic Courtès