[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] 63 failures for org-test-run-all-tests in an Emacs GUI
From: |
Sebastien Vauban |
Subject: |
Re: [O] 63 failures for org-test-run-all-tests in an Emacs GUI |
Date: |
Wed, 24 Dec 2014 11:33:10 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (windows-nt) |
Hello,
Nicolas Goaziou wrote:
> Sebastien Vauban writes:
>
>> I just ran `org-test-run-all-tests' in my active WinNT Emacs session
>> (with Org-mode release_8.3beta-677-g0497e3), and was surprised by the
>> high number of failures:
>
> You probably heavily customized Org
For sure ;-)
> and many tests expect default values for defcustoms to run properly.
>
> I fixed the most obvious one, but there is more work to do in that area.
IIUC, the "top 1" problem for test failures is my customization of
`org-babel-no-eval-on-ctrl-c-ctrl-c' to `t'.
For the tests to work with that (common?) customization, should we
replace, in the tests, all calls to:
--8<---------------cut here---------------start------------->8---
(org-ctrl-c-ctrl-c)
--8<---------------cut here---------------end--------------->8---
by:
--8<---------------cut here---------------start------------->8---
(let (org-babel-no-eval-on-ctrl-c-ctrl-c)
(org-ctrl-c-ctrl-c))
--8<---------------cut here---------------end--------------->8---
?
Best regards,
Seb
--
Sebastien Vauban
- [O] 63 failures for org-test-run-all-tests in an Emacs GUI, Sebastien Vauban, 2014/12/22
- Re: [O] 63 failures for org-test-run-all-tests in an Emacs GUI, Nicolas Goaziou, 2014/12/24
- Re: [O] 63 failures for org-test-run-all-tests in an Emacs GUI,
Sebastien Vauban <=
- Re: [O] 63 failures for org-test-run-all-tests in an Emacs GUI, Sebastien Vauban, 2014/12/24
- Re: [O] 63 failures for org-test-run-all-tests in an Emacs GUI, Nicolas Goaziou, 2014/12/24
- [O] [PATCH] Replace `org-ctrl-c-ctrl-c' by `org-babel-execute-maybe' in tests, Sebastien Vauban, 2014/12/29
- Re: [O] [PATCH] Replace `org-ctrl-c-ctrl-c' by `org-babel-execute-maybe' in tests, Nicolas Goaziou, 2014/12/30
- Re: [O] [PATCH] Replace `org-ctrl-c-ctrl-c' by `org-babel-execute-maybe' in tests, Sebastien Vauban, 2014/12/30
- Re: [O] [PATCH] Replace `org-ctrl-c-ctrl-c' by `org-babel-execute-maybe' in tests, Nicolas Goaziou, 2014/12/30
- Re: [O] [PATCH] Replace `org-ctrl-c-ctrl-c' by `org-babel-execute-maybe' in tests, Sebastien Vauban, 2014/12/30
Re: [O] 63 failures for org-test-run-all-tests in an Emacs GUI, Sebastien Vauban, 2014/12/31