mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: ghc-happy: Skip memory-hungry tests.
Tests fail reliably for me on a system with 2GB of available RAM, in `issue93.a.hs` and `issue93.n.hs`. * gnu/packages/haskell.scm (ghc-happy): Skip test "issue93". Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
8b3560501f
commit
3eb261e2e5
1 changed files with 10 additions and 0 deletions
|
@ -1325,6 +1325,16 @@ postfix notation. For more information on stack based languages, see
|
||||||
(base32
|
(base32
|
||||||
"138xpxdb7x62lpmgmb6b3v3vgdqqvqn4273jaap3mjmc2gla709y"))))
|
"138xpxdb7x62lpmgmb6b3v3vgdqqvqn4273jaap3mjmc2gla709y"))))
|
||||||
(build-system haskell-build-system)
|
(build-system haskell-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'skip-test-issue93
|
||||||
|
(lambda _
|
||||||
|
;; Tests run out of memory on a system with 2GB of available RAM,
|
||||||
|
;; in 'issue93.a.hs' and 'issue93.n.hs'.
|
||||||
|
(substitute* "tests/Makefile"
|
||||||
|
((" issue93.y ") " "))
|
||||||
|
#t)))))
|
||||||
(home-page "https://hackage.haskell.org/package/happy")
|
(home-page "https://hackage.haskell.org/package/happy")
|
||||||
(synopsis "Parser generator for Haskell")
|
(synopsis "Parser generator for Haskell")
|
||||||
(description "Happy is a parser generator for Haskell. Given a grammar
|
(description "Happy is a parser generator for Haskell. Given a grammar
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue