diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-09-06 18:43:11 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-09-06 18:43:11 +0300 |
commit | c7032683a5ce8ec3b28c935efb00e238d28a5e19 (patch) | |
tree | c43a96ff868d95cf70c7c1fdcb80911ab6849658 /gnu/packages | |
parent | 7f8ee9e0beb8a930235bcd93180ccf64d299882f (diff) | |
download | guix-c7032683a5ce8ec3b28c935efb00e238d28a5e19.tar guix-c7032683a5ce8ec3b28c935efb00e238d28a5e19.tar.gz |
gnu: kwayland: Skip another test.
* gnu/packages/kde-frameworks.scm (kwayland)[arguments]: Add a phase to
skip a test which fails on slower hardware.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 67176eb5a9..9e8d3fa5f8 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1048,6 +1048,11 @@ protocols used in KDE Plasma.") (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'skip-specific-tests + (lambda _ + ;; PlasmaWindowModelTest::testChangeWindowAfterModelDestroy(icon) + (substitute* "autotests/client/test_plasma_window_model.cpp" + ((".*changedSpy\\.wait.*") "")))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) (setenv "XDG_RUNTIME_DIR" (getcwd)) |