mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: gsl: Disable failing tests on powerpc.
* gnu/packages/maths.scm (gsl)[arguments]: Skip the same set of tests on powerpc as skipped on aarch64.
This commit is contained in:
parent
d74ea9e560
commit
f0a9cb9cf0
1 changed files with 4 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
|||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
||||
;;; Copyright © 2015, 2018 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2015 Fabian Harfert <fhmgufs@web.de>
|
||||
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
|
||||
;;; Copyright © 2016, 2018, 2020 Kei Kebreau <kkebreau@posteo.net>
|
||||
|
@ -472,8 +472,9 @@ (define-public gsl
|
|||
(arguments
|
||||
(let ((system (%current-system)))
|
||||
(cond
|
||||
((string-prefix? "aarch64" system)
|
||||
;; Some sparse matrix tests are failing on AArch64:
|
||||
((or (string-prefix? "aarch64" system)
|
||||
(string-prefix? "powerpc" system))
|
||||
;; Some sparse matrix tests are failing on AArch64 and PowerPC:
|
||||
;; https://lists.gnu.org/archive/html/bug-gsl/2020-04/msg00001.html
|
||||
'(#:phases (modify-phases %standard-phases
|
||||
(add-before 'check 'disable-failing-tests
|
||||
|
|
Loading…
Reference in a new issue