diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-06-08 15:56:50 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:05 +0200 |
commit | 6b866f13fb87d1c1c2cdcbdd5a77502afb7b1470 (patch) | |
tree | 362de8624f86ecb0fbff271764cf73cbd75c416c /gnu/packages | |
parent | 82ddbe9a6eb52fd2b311c46d113aeb24f286c2cf (diff) | |
download | guix-6b866f13fb87d1c1c2cdcbdd5a77502afb7b1470.tar.gz guix-6b866f13fb87d1c1c2cdcbdd5a77502afb7b1470.zip |
gnu: guile-commonmark: Run tests under C.UTF-8.
* gnu/packages/guile-xyz.scm (guile-commonmark)[source]: Change
“en_US.utf8” to “C.UTF-8” in tests.
Change-Id: I85bd8c0a60883f771e75c4ec90e4c441531d777b
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 5a51c98186..4901981bca 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -3151,7 +3151,11 @@ key-value cache and store.") (substitute* "configure" (("2\\.2 2\\.0") "3.0 2.2 2.0")) - #t)))) + ;; The 'en_US.utf8' locale is missing, but C.UTF-8 is + ;; enough. + (substitute* (find-files "tests/inlines" "\\.scm$") + (("en_US.utf8") + "C.UTF-8")))))) (build-system gnu-build-system) ;; The tests throw exceptions with Guile 3.0.5, because they evaluate ;; (exit ...). |