1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-08 19:38:52 +02:00

gnu: stress-ng: Disable tests when cross-compiling.

* gnu/packages/admin.scm (stress-ng)[arguments]: Also disable the tests
when cross-compiling.

Change-Id: If417d3a0379e6345902536c9a5bdef7afde6f18d
This commit is contained in:
Efraim Flashner
2024-11-06 11:36:18 +02:00
parent 1970662004
commit b6487f8d5a
+3 -2
View File
@@ -9,7 +9,7 @@
;;; Copyright © 2016, 2017, 2020 Leo Famulari <leo@famulari.name>
;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl>
;;; Copyright © 2016, 2017, 2023 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016-2023 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016-2024 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 Peter Feigl <peter.feigl@nexoid.at>
;;; Copyright © 2016 John J. Foerch <jjfoerch@earthlink.net>
;;; Copyright © 2016, 2017 Nikita <nikita@n0.is>
@@ -2622,7 +2622,8 @@ system is under heavy load.")
;; XXX The test suite seems to cause instability on the VisionFive 2
;; build machines, maybe it's stressing them as intended but this is
;; unhelpful.
(list #:tests? (not (target-riscv64?))
(list #:tests? (and (not (%current-target-system))
(not (target-riscv64?)))
#:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
(string-append "BINDIR=" #$output "/bin")