gnu: kcoreaddons: Disable broken test.
* gnu/packages/kde-frameworks.scm (kcoreaddons)[arguments]: Disable benchNotifyWatcher test because it installs too many inotify watches and fails with ENOSPC.
This commit is contained in:
parent
c6bc0fc3a5
commit
19d8f047c4
|
@ -573,11 +573,14 @@ propagate their changes to their respective configuration files.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'check 'blacklist-failing-test
|
(add-before 'check 'blacklist-failing-test
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Blacklist a failing test-function. FIXME: Make it pass.
|
;; Blacklist failing tests.
|
||||||
;; Test failure caused by stout/stderr being interleaved.
|
|
||||||
(with-output-to-file "autotests/BLACKLIST"
|
(with-output-to-file "autotests/BLACKLIST"
|
||||||
(lambda _
|
(lambda _
|
||||||
(display "[test_channels]\n*\n")))
|
;; FIXME: Make it pass. Test failure caused by stout/stderr
|
||||||
|
;; being interleaved.
|
||||||
|
(display "[test_channels]\n*\n")
|
||||||
|
;; This fails with ENOSPC because of too many inotify watches.
|
||||||
|
(display "[benchNotifyWatcher]\n*\n")))
|
||||||
#t))
|
#t))
|
||||||
;; See upstream commit ee424e9b62368485bba4193053cabb553a1d268e
|
;; See upstream commit ee424e9b62368485bba4193053cabb553a1d268e
|
||||||
(add-after 'unpack 'fix-broken-test
|
(add-after 'unpack 'fix-broken-test
|
||||||
|
|
Loading…
Reference in New Issue