aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/status.scm6
-rw-r--r--tests/store.scm6
2 files changed, 4 insertions, 8 deletions
diff --git a/tests/status.scm b/tests/status.scm
index 99abb41c8b..08a3153218 100644
--- a/tests/status.scm
+++ b/tests/status.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2018, 2019 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -125,9 +125,7 @@
(test-equal "current-build-output-port, UTF-8 + garbage"
;; What about a mixture of UTF-8 + garbage?
- (let ((replacement (cond-expand
- ((and guile-2 (not guile-2.2)) "?")
- (else "�"))))
+ (let ((replacement "�"))
`((build-log #f ,(string-append "garbage: " replacement "lambda: λ\n"))))
(let-values (((port get-status) (build-event-output-port cons '())))
(display "garbage: " port)
diff --git a/tests/store.scm b/tests/store.scm
index 3ff526cdcf..5ff9308d7d 100644
--- a/tests/store.scm
+++ b/tests/store.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -444,9 +444,7 @@
(package-derivation %store %bootstrap-guile))))
(guard (c ((nix-protocol-error? c) #t))
(build-derivations %store (list d))))))))
- (cond-expand
- (guile-2.2 "garbage: �lambda: λ")
- (else "garbage: ?lambda: λ"))))
+ "garbage: �lambda: λ"))
(test-assert "log-file, derivation"
(let* ((b (add-text-to-store %store "build" "echo $foo > $out" '()))
s.el: fix call-with-{retrying-}transaction indenting.Caleb Ristvedt 2020-08-26.dir-locals.el: Add indentation rule for 'package/inherit'.Ludovic Courtès 2020-06-25deduplication: Use 'dynamic-wind' when changing permissions of the parent.Ludovic Courtès 2020-06-16channels: 'latest-channel-instance' authenticates Git checkouts.Ludovic Courtès 2020-06-10database: separate transaction-handling and retry-handling.Caleb Ristvedt 2020-06-10database: ensure update-or-insert is run within a transactionCaleb Ristvedt 2020-06-10database: rewrite query procedures in terms of with-statement.Caleb Ristvedt 2020-06-06ui: 'display-search-results' automatically invokes the pager.Ludovic Courtès 2020-06-05git-authenticate: Add tests.Ludovic Courtès 2020-05-16gexp: Add 'let-system'.Ludovic Courtès 2020-03-22store: Add 'with-build-handler'.Ludovic Courtès 2020-03-12gexp: Add 'with-parameters'.Ludovic Courtès 2019-11-29ui: Factorize 'with-profile-lock'.Ludovic Courtès 2019-11-19pull: Acquire a lock for the target profile.Ludovic Courtès 2019-09-23git: Add 'commit-difference'.Ludovic Courtès 2019-06-05syscalls: Add 'with-file-lock' macro.Ludovic Courtès 2019-05-27publish: Add support for lzip.Ludovic Courtès 2019-03-07database: Make 'register-items' transactional.Caleb Ristvedt 2019-01-11status: Add 'with-status-verbosity'.Ludovic Courtès 2018-10-19tests: Run 'guix pack' tests using the external store.Ludovic Courtès 2018-09-27Add (guix status) and use it for pretty colored output.Ludovic Courtès 2018-06-01Add (gnu store database).Caleb Ristvedt 2018-06-01gexp: Add 'with-extensions'.Ludovic Courtès 2018-01-08services: guix: Add 'log-compression' option.Ludovic Courtès 2017-12-01weather: Use (guix progress) for progress report.Ludovic Courtès 2017-05-18union: Gracefully handle dangling symlinks in the input.Ludovic Courtès 2017-05-04dir-locals.el: Add 'modify-phases' keywords.Alex Kost