me
/
guix
Archived
1
0
Fork 0

gnu: guile-3.0: Skip OOM test on powerpc-linux.

* gnu/packages/guile.scm (guile-3.0)[arguments]: Skip the OOM test on
powerpc-linux also.
master
Efraim Flashner 2023-04-05 16:37:51 +03:00
parent bbc4a8d238
commit 413097306f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 3 additions and 2 deletions

View File

@ -391,10 +391,11 @@ without requiring the source code to be rewritten.")
(("^GUILE_OPTIMIZATIONS.*")
"GUILE_OPTIMIZATIONS = -O1 -Oresolve-primitives -Ocps\n")))))
#~())
#$@(if (target-ppc64le?)
#$@(if (target-powerpc?)
#~((add-after 'unpack 'skip-oom-test
(lambda _
;; This test hangs with guile-3.0.9 and libgc-8.2.2.
;; This test hangs with guile-3.0.9 and libgc-8.2.2 and
;; fails completely on powerpc-linux.
(substitute* "test-suite/standalone/test-out-of-memory"
(("!#") "!#\n\n(exit 77)\n")))))
#~())