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
This commit is contained in:
Efraim Flashner 2024-05-15 13:51:22 +03:00
parent 51439bf251
commit d1feac0049
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -11317,7 +11317,10 @@ (define-public java-jctools-core-1
(arguments (arguments
`(#:jar-name "java-jctools-core.jar" `(#:jar-name "java-jctools-core.jar"
#:source-dir "jctools-core/src/main/java" #: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 (native-inputs
(list java-junit java-hamcrest-all)) (list java-junit java-hamcrest-all))
(home-page "https://github.com/JCTools/JCTools") (home-page "https://github.com/JCTools/JCTools")