[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: tests: Remove 'GUIX_LOCPATH' hack that had been added for address
From: |
Ludovic Courtès |
Subject: |
05/05: tests: Remove 'GUIX_LOCPATH' hack that had been added for address@hidden |
Date: |
Wed, 23 Nov 2016 20:14:24 +0000 (UTC) |
civodul pushed a commit to branch master
in repository guix.
commit cc73339b97901cf1e50f07a6f0114974b34592c4
Author: Ludovic Courtès <address@hidden>
Date: Wed Nov 23 21:10:49 2016 +0100
tests: Remove 'GUIX_LOCPATH' hack that had been added for address@hidden
* gnu/tests/base.scm (run-basic-test)[test]("locale"): Remove
'GUIX_LOCPATH' hack, which is no longer needed since
commit 9f58fe3d1c32e3f0ced065e286532a10cad1b5e3.
---
gnu/tests/base.scm | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/gnu/tests/base.scm b/gnu/tests/base.scm
index 86242d9..6370d69 100644
--- a/gnu/tests/base.scm
+++ b/gnu/tests/base.scm
@@ -199,14 +199,8 @@ info --version")
(test-equal "locale"
"en_US.utf8"
- (marionette-eval '(begin
- ;; XXX: This 'setenv' call wouldn't be needed
- ;; but our address@hidden currently ignores
- ;; /run/current-system/locale.
- (setenv "GUIX_LOCPATH"
- "/run/current-system/locale")
- (let ((before (setlocale LC_ALL "en_US.utf8")))
- (setlocale LC_ALL before)))
+ (marionette-eval '(let ((before (setlocale LC_ALL "en_US.utf8")))
+ (setlocale LC_ALL before))
marionette))
(test-assert "/run/current-system is a GC root"