guix-commits
[Top][All Lists]
Advanced

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

03/08: emacs-build-system: Reinstate the check phase.


From: Ludovic Courtès
Subject: 03/08: emacs-build-system: Reinstate the check phase.
Date: Mon, 5 Feb 2018 10:56:25 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 58b6812fd4c480bc3ef07934c5967d18a2992292
Author: Maxim Cournoyer <address@hidden>
Date:   Sat Jan 13 17:54:57 2018 -0500

    emacs-build-system: Reinstate the check phase.
    
    * guix/build/emacs-build-system.scm (%standard-phases): Reinstate the check
    phase from the gnu-build-system.
    * guix/build-system/emacs.scm (emacs-build)[tests?]: But do not enable it 
by default.
    [parallel-tests?]: Add argument.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 guix/build-system/emacs.scm       | 3 ++-
 guix/build/emacs-build-system.scm | 1 -
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/build-system/emacs.scm b/guix/build-system/emacs.scm
index 0229682..d9f1a8d 100644
--- a/guix/build-system/emacs.scm
+++ b/guix/build-system/emacs.scm
@@ -82,7 +82,8 @@
 
 (define* (emacs-build store name inputs
                       #:key source
-                      (tests? #t)
+                      (tests? #f)
+                      (parallel-tests? #t)
                       (test-target "test")
                       (configure-flags ''())
                       (phases '(@ (guix build emacs-build-system)
diff --git a/guix/build/emacs-build-system.scm 
b/guix/build/emacs-build-system.scm
index bdef4d2..a68ca60 100644
--- a/guix/build/emacs-build-system.scm
+++ b/guix/build/emacs-build-system.scm
@@ -246,7 +246,6 @@ second hyphen.  This corresponds to 'name-version' as used 
in ELPA packages."
     (add-after 'set-paths 'set-emacs-load-path set-emacs-load-path)
     (replace 'unpack unpack)
     (delete 'configure)
-    (delete 'check)
     ;; Move the build phase after install: the .el files are byte compiled
     ;; directly in the store.
     (delete 'build)



reply via email to

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