[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/50: gnu: icedtea-7: Run tests conditionally.
From: |
guix-commits |
Subject: |
11/50: gnu: icedtea-7: Run tests conditionally. |
Date: |
Thu, 23 Dec 2021 16:34:22 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 9e6baab2d8aa729b625eaa9104bfc1e71e12ccc2
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Dec 16 09:15:25 2021 +0100
gnu: icedtea-7: Run tests conditionally.
* gnu/packages/java.scm (icedtea-7)[arguments]: Respect TESTS? in 'check
phase.
---
gnu/packages/java.scm | 37 ++++++++++++++++++-------------------
1 file changed, 18 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index c1b3032..e2a26f2 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -1618,30 +1618,29 @@ bootstrapping purposes.")
(("/bin/sh") (which "sh"))))
#t))
(replace 'check
- (lambda _
+ (lambda* (#:key tests? #:allow-other-keys)
;; The "make check-*" targets always return zero, so we need to
;; check for errors in the associated log files to determine
;; whether any tests have failed.
- (use-modules (ice-9 rdelim))
- (let* ((error-pattern (make-regexp "^(Error|FAILED):.*"))
- (checker (lambda (port)
- (let loop ()
- (let ((line (read-line port)))
- (cond
- ((eof-object? line) #t)
- ((regexp-exec error-pattern line)
- (error "test failed"))
- (else (loop)))))))
- (run-test (lambda (test)
- (invoke "make" test)
- (call-with-input-file
- (string-append "test/" test ".log")
- checker))))
- (when #f ; skip tests
+ (when tests?
+ (use-modules (ice-9 rdelim))
+ (let* ((error-pattern (make-regexp "^(Error|FAILED):.*"))
+ (checker (lambda (port)
+ (let loop ()
+ (let ((line (read-line port)))
+ (cond
+ ((eof-object? line) #t)
+ ((regexp-exec error-pattern line)
+ (error "test failed"))
+ (else (loop)))))))
+ (run-test (lambda (test)
+ (invoke "make" test)
+ (call-with-input-file
+ (string-append "test/" test ".log")
+ checker))))
(run-test "check-hotspot")
(run-test "check-langtools")
- (run-test "check-jdk"))
- #t)))
+ (run-test "check-jdk")))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((doc (string-append (assoc-ref outputs "doc")
- branch master updated (a29360a -> 56478ab), guix-commits, 2021/12/23
- 01/50: gnu: jamvm: Simplify snippet., guix-commits, 2021/12/23
- 11/50: gnu: icedtea-7: Run tests conditionally.,
guix-commits <=
- 25/50: gnu: ecj-bootstrap: Remove trailing #T., guix-commits, 2021/12/23
- 26/50: gnu: ecj-bootstrap: Remove #:modules from arguments., guix-commits, 2021/12/23
- 12/50: gnu: icedtea-7: Remove trailing #T., guix-commits, 2021/12/23
- 13/50: gnu: icedtea-7: Bind INPUTS in 'patch-paths build phase., guix-commits, 2021/12/23
- 29/50: gnu: classpath-devel: Remove trailing #T., guix-commits, 2021/12/23
- 05/50: gnu: ecj-javac-wrapper: Use Guile 3., guix-commits, 2021/12/23
- 30/50: gnu: classpath-bootstrap: Use label-less input style., guix-commits, 2021/12/23
- 03/50: gnu: ecj-javac-wrapper: Remove rt.jar from classpath., guix-commits, 2021/12/23
- 33/50: gnu: ecj-bootstrap: Use label-less input style., guix-commits, 2021/12/23
- 08/50: gnu: Add ecj4-bootstrap., guix-commits, 2021/12/23