From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: 6 failing tests on master branch Date: Thu, 08 Jun 2017 23:10:41 +0200 Message-ID: <87a85i2nji.fsf@nicolasgoaziou.fr> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53849) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dJ4hZ-0004rR-UB for emacs-orgmode@gnu.org; Thu, 08 Jun 2017 17:10:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dJ4hZ-0006Zd-0a for emacs-orgmode@gnu.org; Thu, 08 Jun 2017 17:10:45 -0400 Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:50762) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dJ4hY-0006ZU-Qw for emacs-orgmode@gnu.org; Thu, 08 Jun 2017 17:10:44 -0400 In-Reply-To: (Kaushal Modi's message of "Thu, 08 Jun 2017 20:33:16 +0000") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Kaushal Modi Cc: emacs-org list Hello, Kaushal Modi writes: > 6 unexpected results: > FAILED ob-fortran/list-matrix-from-table1 > FAILED ob-fortran/list-matrix-from-table2 > FAILED ob-fortran/list-var-from-table > FAILED test-org-export/file-uri > FAILED test-org/custom-properties > FAILED test-org/forward-paragraph > > I remember reading that someone else too saw the fortran errors.. Is it > because I don't have fortran on my system? No, I don't think so. OTOH, I have no idea about where this comes from. > About the other 3 errors: Since our buildbot doesn't report any problem, this seems specific to Emacs master. > Test test-org-export/file-uri condition: > (ert-test-failed > ((should > (equal "file://myself@some.where:papers/last.pdf" > (org-export-file-uri "/myself@some.where:papers/last.pdf"))) > :form > (equal "file://myself@some.where:papers/last.pdf" > "file:///myself@some.where:papers/last.pdf") > :value nil :explanation > (arrays-of-different-length 40 41 > "file://myself@some.where:papers/last.pdf" > "file:///myself@some.where:papers/last.pdf" first-mismatch-at 7))) This one should be easy to debug since (org-export-file-uri "/myself@some.where:papers/last.pdf") is easy to reproduce. Could you investigate where the spurious "/" comes from? > Test test-org/custom-properties condition: > (ert-test-failed > ((should > (let > (...) > (org-test-with-temp-text "* H > :PROPERTIES: > :FOO: val > :END: > " ... ...))) > :form > (let > ((org-custom-properties ...)) > (org-test-with-temp-text "* H > :PROPERTIES: > :FOO: val > :END: > " > (org-toggle-custom-properties-visibility) > (org-invisible-p2))) > :value nil)) > FAILED 646/734 test-org/custom-properties > > (ert-test-failed > ((should > (org-test-with-temp-text "#+BEGIN_CENTER > P1 > > P2 > #+END_CENTER > P3" > (org-hide-block-toggle) > (org-forward-paragraph) > (looking-at "P3"))) > :form > (let > ((inside-text ...) > (org-mode-hook nil)) > (with-temp-buffer > (org-mode) > (let ... ...) > (org-hide-block-toggle) > (org-forward-paragraph) > (looking-at "P3"))) > :value nil)) > FAILED 668/734 test-org/forward-paragraph These one are related to invisible text. I don't what is going to change in this area in next Emacs release. > I have an unrelated make test question too. > > If I add a test, say test-org/foo, in order to make learning ert and org > test writing faster, it is possible to run just that one test-org/foo and > not the whole suite? You can run, e.g., BTEST_RE="foo" make test Regards, -- Nicolas Goaziou