This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Notes from the testing BOF at the summit


Laurent GUERBY wrote:
Is there also a way to run the testsuite with an installed compiler (in
PATH) instead of in the build directory before install?

dejagnu will take a compiler from your PATH if there isn't one in the current directory. So you can do something like this


    export PATH=...
    mkdir testdir
    cd testdir
    ../gcc/configure
    make configure-gcc
    make check-gcc

If you want to test something else, then you will need to make other configure-* targets, e.g. configure-target-libjava if you want to do make check-target-libjava.
--
Jim Wilson, GNU Tools Support, http://www.SpecifixInc.com



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]