mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-06 03:17:15 -05:00
gnu: guile: Skip OOM test on powerpc64le-linux.
* gnu/packages/guile/scm (guile-3.0)[arguments]: Add phase when building for powerpc64le-linux disabling the OOM test.
This commit is contained in:
parent
1bd8dadbe4
commit
cdba566261
1 changed files with 7 additions and 0 deletions
|
@ -391,6 +391,13 @@ (define patch
|
||||||
(("^GUILE_OPTIMIZATIONS.*")
|
(("^GUILE_OPTIMIZATIONS.*")
|
||||||
"GUILE_OPTIMIZATIONS = -O1 -Oresolve-primitives -Ocps\n")))))
|
"GUILE_OPTIMIZATIONS = -O1 -Oresolve-primitives -Ocps\n")))))
|
||||||
#~())
|
#~())
|
||||||
|
#$@(if (target-ppc64le?)
|
||||||
|
#~((add-after 'unpack 'skip-oom-test
|
||||||
|
(lambda _
|
||||||
|
;; This test hangs with guile-3.0.9 and libgc-8.2.2.
|
||||||
|
(substitute* "test-suite/standalone/test-out-of-memory"
|
||||||
|
(("!#") "!#\n\n(exit 77)\n")))))
|
||||||
|
#~())
|
||||||
#$@(if (or (target-ppc32?)
|
#$@(if (or (target-ppc32?)
|
||||||
(target-riscv64?))
|
(target-riscv64?))
|
||||||
#~((add-after 'unpack 'skip-failing-fdes-test
|
#~((add-after 'unpack 'skip-failing-fdes-test
|
||||||
|
|
Loading…
Reference in a new issue