diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2018-02-11 00:51:26 -0500 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2018-04-20 00:49:53 +0530 |
commit | facc0a96a171631bd346b37ffd47bcda6d82e892 (patch) | |
tree | f95b25ab25d92227ae28deb55b4dc1333474c91a /guix/build-system/emacs.scm | |
parent | 8a8fa82e72f55526e8aae85809c8655f5ff26690 (diff) | |
download | gnu-guix-facc0a96a171631bd346b37ffd47bcda6d82e892.tar gnu-guix-facc0a96a171631bd346b37ffd47bcda6d82e892.tar.gz |
build-system: emacs: Add improved check phase.
* guix/build-system/emacs.scm (emacs-build): Add #:test-command keyword
argument. Remove #:configure-flags and #:test-target keyword arguments.
* guix/build/emacs-build-system.scm (check): New procedure.
(%standard-phases): Register check phase after the build phase.
Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
Diffstat (limited to 'guix/build-system/emacs.scm')
-rw-r--r-- | guix/build-system/emacs.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/guix/build-system/emacs.scm b/guix/build-system/emacs.scm index d9f1a8d289..ef6d1b3397 100644 --- a/guix/build-system/emacs.scm +++ b/guix/build-system/emacs.scm @@ -84,8 +84,7 @@ #:key source (tests? #f) (parallel-tests? #t) - (test-target "test") - (configure-flags ''()) + (test-command ''("make" "check")) (phases '(@ (guix build emacs-build-system) %standard-phases)) (outputs '("out")) @@ -110,9 +109,8 @@ source) (source source)) - #:configure-flags ,configure-flags #:system ,system - #:test-target ,test-target + #:test-command ,test-command #:tests? ,tests? #:phases ,phases #:outputs %outputs |