Hi Eric Martyn Jago writes: > Hi Eric > > Eric Schulte writes: > >> Hi Martyn, >> >>> >>> I have written a few more tests for inline source blocks execution with >>> org-ctrl-c-ctrl-c (not extensive by any means). >> >> Thanks for adding these tests, I get 6 failures all with the same error >> [1], is that intentional? If not would you mind taking another look at >> this patch? I reverse-engineered my =test-init.el= script using a call to =org-test-run-batch-tests= and from that worked out why your script was breaking tests. One problem on my system is that emacs was using the wrong org mode since the newer org location wasn't known about. Also, the languages, emacs-lisp and sh need to be switched on (I thought emacs-lisp was on by default)? Now all tests pass. My minimised script... --8<---------------cut here---------------start------------->8--- (let ((org-dir "~/org-mode/")) (add-to-list 'load-path (concat org-dir "lisp")) (add-to-list 'load-path (concat org-dir "testing")) (require 'org-test) (setq org-confirm-babel-evaluate nil) (org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp . t) (sh . t))) (org-test-run-batch-tests)) --8<---------------cut here---------------end--------------->8--- Called by... --8<---------------cut here---------------start------------->8--- emacs -Q -script ~/orgmode/testing/test-init.el --8<---------------cut here---------------end--------------->8--- Your modified script... --8<---------------cut here---------------start------------->8--- emacs -Q -batch -L ~/org-mode/lisp ~/org-mode/testing -l org-test.el \ -eval "(progn(setq org-confirm-babel-evaluate nil) \ (org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp \ . t) (sh . t))))" -f org-test-run-batch-tests --8<---------------cut here---------------end--------------->8--- I've fixed my typos in test-ob.el below. Best, Martyn