This is an automated email from the git hooks/post-receive script.

glv pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new bc2e923c19 gnu: ecl-closure-template: Don't run the test suite.
bc2e923c19 is described below

commit bc2e923c19e79877a2ce3f360d3fadfdcb93515b
Author: Konrad Hinsen <[email protected]>
AuthorDate: Sat May 3 17:20:16 2025 +0200

    gnu: ecl-closure-template: Don't run the test suite.
    
    The test suite of cl-closure-template fails under ecl due to
    incomplete support for ecl in the testing framework cl-lift.
    
    * gnu/packages/lisp-xyz.scm (ecl-closure-template)[arguments]: Don't run the
      test suite.
    
    Change-Id: I0bc802273db999854b32c80ebfc309e7bc2a7e55
    Signed-off-by: Guillaume Le Vaillant <[email protected]>
---
 gnu/packages/lisp-xyz.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 97e102826e..b5c2a242b8 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16,7 +16,7 @@
 ;;; Copyright © 2019 Jesse Gildersleve <[email protected]>
 ;;; Copyright © 2019-2025 Guillaume Le Vaillant <[email protected]>
 ;;; Copyright © 2019 Brett Gilio <[email protected]>
-;;; Copyright © 2020, 2024 Konrad Hinsen <[email protected]>
+;;; Copyright © 2020, 2024, 2025 Konrad Hinsen <[email protected]>
 ;;; Copyright © 2020 Dimakis Dimakakos <[email protected]>
 ;;; Copyright © 2020 Oleg Pykhalov <[email protected]>
 ;;; Copyright © 2020, 2021, 2022 Adam Kandur <[email protected]>
@@ -11850,7 +11850,14 @@ Closure Templates.")
   (sbcl-package->cl-source-package sbcl-closure-template))
 
 (define-public ecl-closure-template
-  (sbcl-package->ecl-package sbcl-closure-template))
+  (let ((pkg (sbcl-package->ecl-package sbcl-closure-template)))
+    (package
+      (inherit pkg)
+      ;; The test suite fails under ecl because the function
+      ;;    LIFT::GET-BACKTRACE-AS-STRING
+      ;; (from ecl-lift) is undefined. Lift's support for ecl
+      ;; seems to be incomplete.
+      (arguments (list #:tests? #false)))))
 
 (define-public sbcl-clsql
   (package

Reply via email to