mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 08:36:32 +01:00
gnu: ghc: Fix build on i686-linux.
* gnu/packages/haskell.scm (ghc-8.10)[arguments]<#:phases>: Disable failing test. Signed-off-by: Lars-Dominik Braun <lars@6xq.net>
This commit is contained in:
parent
f22dfba530
commit
afc4945d44
1 changed files with 9 additions and 2 deletions
|
@ -22,6 +22,7 @@
|
||||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
|
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
|
||||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||||
|
;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -711,12 +712,18 @@ (define-public ghc-8.10
|
||||||
(("\\]\\), " all)
|
(("\\]\\), " all)
|
||||||
(string-append all "expect_broken(0)], ")))))
|
(string-append all "expect_broken(0)], ")))))
|
||||||
;; TODO: Turn this into an undconditional patch on the next rebuild.
|
;; TODO: Turn this into an undconditional patch on the next rebuild.
|
||||||
,@(if (string=? "i686-linux" (%current-system))
|
,@(if (string-prefix? "i686" (or (%current-target-system)
|
||||||
|
(%current-system)))
|
||||||
'((add-after 'skip-more-tests 'skip-failing-tests-i686
|
'((add-after 'skip-more-tests 'skip-failing-tests-i686
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* '("testsuite/tests/codeGen/should_compile/all.T")
|
(substitute* '("testsuite/tests/codeGen/should_compile/all.T")
|
||||||
(("(test\\('T15155l', )when\\(unregisterised\\(\\), skip\\)" all before)
|
(("(test\\('T15155l', )when\\(unregisterised\\(\\), skip\\)" all before)
|
||||||
(string-append before "when(arch('i386'), skip)"))))))
|
(string-append before "when(arch('i386'), skip)")))
|
||||||
|
;; Unexpected failures:
|
||||||
|
;; quasiquotation/T14028.run T14028 [bad stderr] (dyn)
|
||||||
|
(substitute* '("testsuite/tests/quasiquotation/all.T")
|
||||||
|
(("unless\\(config.have_ext_interp, skip\\),")
|
||||||
|
"unless(config.have_ext_interp, skip), when(arch('i386'), skip),")))))
|
||||||
'())))))
|
'())))))
|
||||||
(native-search-paths (list (search-path-specification
|
(native-search-paths (list (search-path-specification
|
||||||
(variable "GHC_PACKAGE_PATH")
|
(variable "GHC_PACKAGE_PATH")
|
||||||
|
|
Loading…
Reference in a new issue