From 4702849bfe7462fb6c6303786dac1b670c8f0f8f Mon Sep 17 00:00:00 2001 From: Andrew Tropin Date: Wed, 14 Sep 2022 09:17:31 +0300 Subject: [PATCH] remove copypasted kvaq test --- kv-tests.el | 7 ------- 1 file changed, 7 deletions(-) diff --git a/kv-tests.el b/kv-tests.el index 1713e5e..abd6a24 100644 --- a/kv-tests.el +++ b/kv-tests.el @@ -105,13 +105,6 @@ (should-not (equal "b" (kvaq "a" '((:a . :b)("a" . "b"))))) (should-not (kvaq "b" '((:a . :b)("a" . "b"))))) -(ert-deftest kvaq () - "Test the simple assq." - (should (equal :b (kvaq :a '((:a . :b)("a" . "b"))))) - (should (equal 2 (kvaq 1 '((1 . 2)("a" . "b"))))) - (should-not (equal "b" (kvaq "a" '((:a . :b)("a" . "b"))))) - (should-not (kvaq "b" '((:a . :b)("a" . "b"))))) - (ert-deftest kvaqc () "Test the simple assq." (should (equal :b (kvaqc :a '((:a . :b)("a" . "b"))))) -- 2.37.3 h'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/etc/guix-daemon.cil.in
d>
AgeCommit message (Expand)Author
Remove workaround for 'time-monotonic' in Guile 2.2.2....This is a followup to e688c2df3924423b67892cc9939ca099c729d1cb. * build-aux/hydra/evaluate.scm <top level>: Remove 'time-monotonic' definition. * guix/cache.scm: Likewise. * guix/progress.scm: Likewise. * guix/scripts/substitute.scm: Likewise. * guix/scripts/weather.scm: Likewise. * tests/cache.scm: Likewise. Ludovic Courtès
2017-04-22cache: Work around 'time-monotonic' bug in Guile 2.2.2....* guix/cache.scm (time-monotonic) [guile-2.2]: New variable. * tests/cache.scm (time-monotonic) [guile-2.2]: Likewise. * guix/build/download.scm (time-monotonic) [guile-2.2]: Adjust comment: it's a 2.2.2 bug. Ludovic Courtès
2017-04-18Add (guix cache) and use it in (guix scripts substitute)....* guix/cache.scm, tests/cache.scm: New files. * Makefile.am (MODULES, SCM_TESTS): Add them. * guix/scripts/substitute.scm (obsolete?): Remove. (remove-expired-cached-narinfos): Rename to... (cached-narinfo-expiration-time): ... this. Remove the removal part and only keep the expiration time part. (narinfo-cache-directories): Add optional 'directory' parameter and honor it. (maybe-remove-expired-cached-narinfo): Remove. (cached-narinfo-files): New procedure. (guix-substitute): Use 'maybe-remove-expired-cache-entries' instead of 'maybe-remove-expired-cached-narinfo'. Ludovic Courtès