diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2025-03-25 17:05:05 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-03-26 07:44:33 +0200 |
commit | 24440a299c268f8bb6730ad2c6a37f8909852654 (patch) | |
tree | 628989ad638e00a28789250c92c08fa138dd6240 | |
parent | d6a9fc6c95631be3734ca4571069d881f71b9d34 (diff) | |
download | guix-24440a299c268f8bb6730ad2c6a37f8909852654.tar.gz guix-24440a299c268f8bb6730ad2c6a37f8909852654.zip |
gnu: python-numpy: Skip another test on armhf-linux.
* gnu/packages/python-xyz.scm (python-numpy)[arguments]: When building
for armhf-linux skip another test.
Change-Id: Iccd691affca928061becc183db14009544c0e163
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2d0de516f3..8c7a60f3e7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9667,9 +9667,10 @@ include_dirs = ~:*~a/include~%" `(" and not test_identityless_reduction_huge_array" " and not (TestKind and test_all)") '()) - ;; This test fails when building from aarch64-linux. + ;; These tests fail when building from aarch64-linux. #$@(if (target-arm32?) - `(" and not test_features") + `(" and not test_features" + " and not test_unary_spurious_fpexception") '()) ;; These tests seem to fail on machines without ;; an FPU is still under investigation upstream. |