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