[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: java-jctools-core-1: Skip tests on aarch64-linux.
From: |
guix-commits |
Subject: |
08/08: gnu: java-jctools-core-1: Skip tests on aarch64-linux. |
Date: |
Wed, 15 May 2024 08:48:23 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit d1feac004914c13f49351687c0075a85b8370ee2
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed May 15 13:51:22 2024 +0300
gnu: java-jctools-core-1: Skip tests on aarch64-linux.
* gnu/packages/java.scm (java-jctools-core-1)[arguments]: When building
on aarch64-linux skip the tests.
Change-Id: I83a40b5eb352be48b9083aa57dd10e87b525c7be
---
gnu/packages/java.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 5988484c7f..50324022e5 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -11317,7 +11317,10 @@ particularly simple design.")
(arguments
`(#:jar-name "java-jctools-core.jar"
#:source-dir "jctools-core/src/main/java"
- #:test-dir "jctools-core/src/test"))
+ #:test-dir "jctools-core/src/test"
+ ;; The tests timeout on some architectures.
+ #:tests? ,(not (or (target-aarch64?)
+ (%current-target-system)))))
(native-inputs
(list java-junit java-hamcrest-all))
(home-page "https://github.com/JCTools/JCTools")
- branch master updated (6cdb6cc6ef -> d1feac0049), guix-commits, 2024/05/15
- 03/08: gnu: the-butterfly-effect: Fix build., guix-commits, 2024/05/15
- 01/08: gnu: quagga: Remove pre-generated files., guix-commits, 2024/05/15
- 02/08: gnu: quagga: Build with gcc-9., guix-commits, 2024/05/15
- 04/08: gnu: arcan-sdl: Build with sdl2., guix-commits, 2024/05/15
- 06/08: gnu: java-swt: Update source URI., guix-commits, 2024/05/15
- 05/08: gnu: java-swt: Fix build on some systems., guix-commits, 2024/05/15
- 07/08: gnu: slade: Update to 3.2.5a., guix-commits, 2024/05/15
- 08/08: gnu: java-jctools-core-1: Skip tests on aarch64-linux.,
guix-commits <=