`make test' has been failing for me with this error: ,---- | Error: error ("Loading file | /home/nick/src/emacs/org/org-mode/testing/lisp/test-ob-octave.el | failed to provide feature ‘test-ob-octave’") `----
The attached patch provides a fix.
>From dc1ab2a24bfc5a02845c380c60f0c1a7452e639a Mon Sep 17 00:00:00 2001 From: Nick Dokos <ndo...@gmail.com> Date: Tue, 15 Mar 2022 12:33:52 -0400 Subject: [PATCH] test-ob-octave: Add missing `provide' --- testing/lisp/test-ob-octave.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/lisp/test-ob-octave.el b/testing/lisp/test-ob-octave.el index 7e20add99..6113b40f3 100644 --- a/testing/lisp/test-ob-octave.el +++ b/testing/lisp/test-ob-octave.el @@ -63,3 +63,5 @@ (org-test-at-id "cc2d82bb-2ac0-45be-a0c8-d1463b86a3ba" (org-babel-next-src-block 5) (should (equal nil (org-babel-execute-src-block))))) + +(provide 'test-ob-octave) -- 2.34.1
-- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler