From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: make test on Mac Date: Wed, 01 Aug 2012 17:22:49 +0200 Message-ID: <87lihyljqu.fsf@gnu.org> References: <873946ofmt.fsf@gnu.org> <87wr1i8y5d.fsf@gmx.com> <87txwmll1d.fsf@gnu.org> <87r4rq8x9j.fsf@gmx.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:60860) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Swakf-0002TJ-9G for emacs-orgmode@gnu.org; Wed, 01 Aug 2012 11:22:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SwakZ-0004nE-Hi for emacs-orgmode@gnu.org; Wed, 01 Aug 2012 11:22:21 -0400 Received: from mail-wg0-f49.google.com ([74.125.82.49]:62731) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwakZ-0004mt-Aa for emacs-orgmode@gnu.org; Wed, 01 Aug 2012 11:22:15 -0400 Received: by wgbez12 with SMTP id ez12so5434120wgb.30 for ; Wed, 01 Aug 2012 08:22:14 -0700 (PDT) In-Reply-To: <87r4rq8x9j.fsf@gmx.com> (Eric Schulte's message of "Wed, 01 Aug 2012 09:09:12 -0600") 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: Eric Schulte Cc: Neuwirth Erich , Org Mode Eric Schulte writes: > Bastien writes: > >> Eric Schulte writes: >> >>> Hmm, these tests should only be run if the "gfortran" executable is in >>> your path. >> >> So let's take them out of the test suite when gfortran is not present? > > That is what we do currently, or at least that is what we're supposed to > be doing currently... From the top of test-ob-fortran.el > > ;; -*- emacs-lisp -*- > (org-test-for-executable "gfortran") > (unless (featurep 'ob-fortran) > (signal 'missing-test-dependency "Support for Fortran code blocks")) Maybe this should be (unless (and (org-test-for-executable "gfortran") (featurep 'ob-fortran)) (signal 'missing-test-dependency "Support for Fortran code blocks")) ? to also ignore the test when gfortran does not exist? Wild guess. -- Bastien