octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: RC1 Candidate


From: Anadi Kashyap
Subject: Re: RC1 Candidate
Date: Sun, 27 Jan 2019 22:36:21 +0530



On Sun, Jan 27, 2019, 22:30 Andrew Janke <address@hidden wrote:


On 1/27/19 9:08 AM, Anadi Kashyap wrote:
>
> On Sun, Jan 27, 2019 at 7:28 PM "Markus Mützel" <address@hidden
> <mailto:address@hidden>> wrote:
>
>     Am 27. Januar 2019 um 14:13 Uhr schrieb "Anadi Kashyap":
>      > On Sun, Jan 27, 2019 at 5:59 PM Torsten <address@hidden
>     <mailto:address@hidden>[mailto:address@hidden
>     <mailto:address@hidden>]> wrote:On 27.01.19 13:26, Anadi Kashyap
>     wrote:
>      > >
>      > > It should be printed to stdout at the end of all tests.
>      > >
>      > > Torsten
>      >
>      > Oh. Mine doesn't do that.
>      >
>      > ----- skipped test (missing feature)
>      >
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/leftdiv.tst
>      > >>>>> processing
>     /Users/katokateki/octave-5.0.90/test/line-continue.tst
>      > >>>>> processing
>     /Users/katokateki/octave-5.0.90/test/logical-index.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/null-assign.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/parser.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/prefer.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/range.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/recursion.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/return.tst
>      > >>>>> processing
>     /Users/katokateki/octave-5.0.90/test/single-index.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/slice.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/struct.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/switch.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/system.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/transpose.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/try.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/unwind.tst
>      > >>>>> processing /Users/katokateki/octave-5.0.90/test/while.tst
>      >
>      > That's all. Sorry, I'm new to this. Any help is appreciated.
>
>     What you have pasted looks like the content of fntests.log.
>     Do you see any output in the terminal (or whatever that is called on
>     Mac) while running "make check"? It should be looking similarly to this:
>
>     --snip--
>        struct.tst .....................................................
>     PASS   47/47
>        switch.tst .....................................................
>     PASS    8/8
>        system.tst .....................................................
>     PASS  103/103
>        transpose.tst ..................................................
>     PASS   16/16
>        try.tst ........................................................
>     PASS   18/18
>        unwind.tst .....................................................
>     PASS    2/2
>        while.tst ......................................................
>     PASS    6/6
>
>     Summary:
>
>        PASS                            15430
>        FAIL                                0
>        XFAIL (reported bug)               24
>        SKIP (missing feature)            124
>        SKIP (run-time condition)          12
>
>     --snip--
>
>     Markus
>
> What I pasted was actually the last bit of the output on my terminal.
>
> If it's of any help, I get "Unknown command `codequoteundirected'." a
> lot during the make check. I have the latest texinfo according to
> brew... A known bug simply tells me to ignore it though.

That "codequoteundirected" stuff is because octave is running against a
too-old version of Texinfo. Even though you have a new-enough Texinfo
installed via Homebrew, that version is not on the $PATH by default,
because Homebrew's policy is to avoid shadowing system-provided
packages. So octave doesn't see it.

To make Octave use the newer Texinfo, either add it to your path before
running octave, like this:

PATH="$(brew --prefix texinfo)/bin:$PATH"
octave

Or modify your octave install to use it all the time by adding this to
the /usr/local/share/octave/site/m/startup/octaverc file for your octave
installation (replace /usr/local with wherever you actually installed
octave):

makeinfo_program ("/usr/local/opt/texinfo/bin/makeinfo");

(There, replace "/usr/local/opt/texinfo" with whatever your "brew
--prefix texinfo" actually is.)

Cheers,
Andrew

Thanks, I'll do that.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]