mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: java-simple-xml: Delete failing test.
This is a follow-up to commit 8e32bd1720336ec62258cb842dce812f7f979d04. * gnu/packages/xml.scm (java-simple-xml)[arguments]: Disable test by deleting it, as #:test-exclude doesn't have any effect.
This commit is contained in:
parent
d04261241b
commit
e44a0d2ce2
1 changed files with 6 additions and 3 deletions
|
@ -1553,11 +1553,14 @@ (define-public java-simple-xml
|
|||
(arguments
|
||||
`(#:build-target "build"
|
||||
#:test-target "test"
|
||||
;; This test sometimes fails with an out of memory exception
|
||||
#:test-exclude (list "**/NoAnnotationsRequiredTest.java")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'install (install-jars "jar")))))
|
||||
(replace 'install (install-jars "jar"))
|
||||
(add-before 'check 'disable-failing-test
|
||||
(lambda _
|
||||
;; This test sometimes fails with an out of memory exception
|
||||
(delete-file
|
||||
"test/src/org/simpleframework/xml/core/NoAnnotationsRequiredTest.java"))))))
|
||||
(native-inputs
|
||||
(list unzip))
|
||||
(home-page "http://simple.sourceforge.net/")
|
||||
|
|
Loading…
Reference in a new issue