diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-11-06 11:36:18 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-06 12:49:39 +0200 |
commit | b6487f8d5a4735d73e2a9730652ea5a4d777b776 (patch) | |
tree | 87e05c963209a4563ce65301e75fcbb465f975c8 | |
parent | 1970662004b6a63ef653aaf89caee27254b0a844 (diff) | |
download | guix-b6487f8d5a4735d73e2a9730652ea5a4d777b776.tar.gz guix-b6487f8d5a4735d73e2a9730652ea5a4d777b776.zip |
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
-rw-r--r-- | gnu/packages/admin.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 88d68a3afc..c6a2a33a03 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -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") |