diff options
author | Suhail Singh <suhailsingh247@gmail.com> | 2024-06-17 08:01:09 -0400 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-18 23:56:27 +0200 |
commit | 7e1c3dafd712315d97192395b91eaabba6823677 (patch) | |
tree | 6a7a568c94005c2e4b06ad537172c7759b96e36d | |
parent | 3c64f45fd4d63fad20d0c7faafeb5b760edda245 (diff) | |
download | guix-7e1c3dafd712315d97192395b91eaabba6823677.tar guix-7e1c3dafd712315d97192395b91eaabba6823677.tar.gz |
gnu: emacs-org-super-agenda: Ignore failing tests.
* gnu/packages/emacs-xyz.scm (emacs-org-super-agenda): Ignore tests that fail
with emacs-org 9.7.4.
Change-Id: I06c3ec4a6b279b3cbf2efc392dc930b088f2b569
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index b27829a3c6..db177cf92d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -23645,7 +23645,21 @@ calendars provide.") (string-append (getcwd) "/test/results.el"))) ;; The following tests fail. (substitute* "test/test.el" + ;; TODO: Broken on emacs-org-super-agenda@1.3 and + ;; emacs-org@9.7.4. Verify when updating. + ((".* org-super-agenda-test--auto-parent .*" all) + (string-append all " (skip-unless nil)\n")) + ;; Some tests are using an obsolete variable; fix its use. + (("\\(org-super-agenda-retain-sorting ") + "(org-super-agenda-keep-order ") + ;; however, they still fail ... + ;; TODO: Broken on emacs-org-super-agenda@1.3 since before + ;; emacs-org@9.7.4. Verify when updating. ((".* org-super-agenda-test--with-retained-sorting .*" all) + (string-append all " (skip-unless nil)\n")) + ;; TODO: Broken on emacs-org-super-agenda@1.3 and + ;; emacs-org@9.7.4. Verify when updating. + ((".* org-super-agenda-test--without-retained-sorting .*" all) (string-append all " (skip-unless nil)\n")))))))) (native-inputs (list emacs-f util-linux)) |