diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-05-15 13:51:22 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-05-15 15:42:42 +0300 |
commit | d1feac004914c13f49351687c0075a85b8370ee2 (patch) | |
tree | 21c2c0abefdf229dc09dfe86b1ebcd3e7c9be67c | |
parent | 51439bf251295e28a229e797fbe6fa8404a2a3bb (diff) | |
download | guix-d1feac004914c13f49351687c0075a85b8370ee2.tar.gz guix-d1feac004914c13f49351687c0075a85b8370ee2.zip |
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
-rw-r--r-- | gnu/packages/java.scm | 5 |
1 files changed, 4 insertions, 1 deletions
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") |