Errors in test suite



>>>>> "Paul" == Paul Bowyer <pbowyer at olynet.com> writes:

    Paul> ./bootstrap
    Paul> ./configure --prefix=$HOME/maxima-test --enable-sbcl
    Paul> --with-sbcl=/usr/local/bin/sbcl
    Paul> make
    Paul> make install

    Paul> ran xmaxima using a bash file containing:
    Paul> #! /bin/bash
    Paul> # script name: runmaxima
    Paul> export
    Paul> PATH="~/maxima-test/bin:~/maxima-test/lib:~/maxima-test/libexec:"$PATH
    Paul> xmaxima -l sbcl

    Paul> ran build_info and the testsuite:

    Paul> (%i1) build_info ();
    Paul> (%o1)
    Paul> Maxima version: "branch_5_29_base_145_g6a57b96"
    Paul> Maxima build date: "2013-02-25 14:19:26"
    Paul> Host type: "x86_64-unknown-linux-gnu"
    Paul> Lisp implementation type: "SBCL"
    Paul> Lisp implementation version: "1.1.4"
    Paul> (%i2) run_testsuite();
    Paul> Running tests in rtestnset: 553/553 tests passed
    Paul> Running tests in rtest1:
    Paul> ********************** Problem 109 ***************
    Paul> Input:
    Paul> (load(file_search(test_readbase_lisp, file_search_tests)),
    Paul> test_readbase_lisp())


    Paul> Result:
    Paul> file_search1: false not found in file_search_maxima,file_search_lisp.
    Paul> error-catch

Well, based on this error message, I'm guessing test_readbase_lisp was
not found in the tests directory.

Can you check that?

Also, in maxima directory, can you just run

maxima-local

and then "run_testsuite()"?  I'm guessing this will be much better.
Or at least no errors from test_readbase_lisp.

I guess that would mean we forgot to install test_readbase_lisp.

Ray