From 8a4ed004d6b0720f47fc6ef5f0247a66a42a2f7c Mon Sep 17 00:00:00 2001 From: Zheng Junjie <873216071@qq.com> Date: Mon, 17 Jul 2023 12:10:57 +0800 Subject: gnu: quickjs: Honor the #:tests? flag. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/javascript.scm (quickjs)[arguments]: Adjust custom 'check phase to honor the #:tests? flag. Signed-off-by: 宋文武 Change-Id: I686b3b9a615cbdaefaf59d9c1c0ba7628d7d92f2 --- gnu/packages/javascript.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm index a1c0d9ad01..c6e7443f85 100644 --- a/gnu/packages/javascript.scm +++ b/gnu/packages/javascript.scm @@ -843,8 +843,9 @@ roots, or wrestle with obscure build systems.") #:phases #~(modify-phases %standard-phases (delete 'configure) (replace 'check - (lambda _ - (invoke "make" "microbench")))))) + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "make" "microbench"))))))) (home-page "https://bellard.org/quickjs/") (synopsis "Small embeddable Javascript engine") (description "QuickJS supports the ES2020 specification including modules, -- cgit v1.2.3