From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Test failures Date: Mon, 14 Jul 2014 23:29:32 -0400 Message-ID: <87wqbf2tb7.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6tRD-0003vH-Qu for emacs-orgmode@gnu.org; Mon, 14 Jul 2014 23:30:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X6tR7-00041s-3v for emacs-orgmode@gnu.org; Mon, 14 Jul 2014 23:29:55 -0400 Received: from plane.gmane.org ([80.91.229.3]:57912) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X6tR6-000409-UF for emacs-orgmode@gnu.org; Mon, 14 Jul 2014 23:29:49 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1X6tR3-0007qC-Hb for emacs-orgmode@gnu.org; Tue, 15 Jul 2014 05:29:45 +0200 Received: from pool-98-110-160-12.bstnma.fios.verizon.net ([98.110.160.12]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 15 Jul 2014 05:29:45 +0200 Received: from ndokos by pool-98-110-160-12.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 15 Jul 2014 05:29:45 +0200 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I just updated to Org-mode version 8.3beta (release_8.3beta-40-g9cf3c4) and got three test failures: ,---- | 3 unexpected results: | FAILED test-org/open-at-point-in-comment | FAILED test-org/open-at-point-in-property | FAILED test-org/open-at-point/info `---- Apparently these tests assume that the org info file can be found, but the `make clea'n that is done at the beginning of make test wipes it out. That's probably because I'm working out of the cloned git tree, but if possible, I would like `make test' to work in that case. My workaround for now is to add `make info' in targets.mk: --8<---------------cut here---------------start------------->8--- index d390fdb..6d8b61a 100644 --- a/mk/targets.mk +++ b/mk/targets.mk @@ -100,6 +100,7 @@ vanilla: check test:: compile check test test-dirty:: + make info -$(MKDIR) $(testdir) TMPDIR=$(testdir) $(BTEST) ifeq ($(TEST_NO_AUTOCLEAN),) # define this variable to leave $(testdir) around for inspection --8<---------------cut here---------------end--------------->8--- Thanks! -- Nick