guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: tests: Fix 'cond-expand' clause for 2.2/2.0.


From: Ludovic Courtès
Subject: 01/03: tests: Fix 'cond-expand' clause for 2.2/2.0.
Date: Wed, 22 Mar 2017 10:02:57 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit ed407f3ccc5de3e440884001d05887a07df5fa81
Author: Ludovic Courtès <address@hidden>
Date:   Wed Mar 22 14:40:51 2017 +0100

    tests: Fix 'cond-expand' clause for 2.2/2.0.
    
    Fixes a mistake in a9a0227c0127e1813190a7664f7ad858e791480d.
    
    * tests/store.scm ("current-build-output-port, UTF-8 + garbage"):
    Inverse the 'cond-expand' clauses since the 'guile-2.0' feature doesn't
    exist.
---
 tests/store.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/store.scm b/tests/store.scm
index c0ebe7b..45150d3 100644
--- a/tests/store.scm
+++ b/tests/store.scm
@@ -384,8 +384,8 @@
             (guard (c ((nix-protocol-error? c) #t))
               (build-derivations %store (list d))))))))
    (cond-expand
-     (guile-2.0 "garbage: ?lambda: λ")
-     (else      "garbage: �lambda: λ"))))
+     (guile-2.2 "garbage: �lambda: λ")
+     (else      "garbage: ?lambda: λ"))))
 
 (test-assert "log-file, derivation"
   (let* ((b (add-text-to-store %store "build" "echo $foo > $out" '()))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]