automake
[Top][All Lists]
Advanced

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

Re: how to run a test file with command line options...


From: Alexandre Duret-Lutz
Subject: Re: how to run a test file with command line options...
Date: Thu, 23 Jun 2005 21:57:04 +0200
User-agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux)

>>> "Ed" == Ed Hartnett <address@hidden> writes:

 Ed> check_PROGRAMS = tst_parallel
 Ed> TESTS = run_par_test.sh

 Ed> Where run_par_test.sh is:

 Ed> MP_TASKS_PER_NODE=4 MP_PROCS=4 poe ./tst_parallel

 Ed> This works, but is there a way to do this in the Makefile.am, and not
 Ed> use a shell script?

If you have only one test, you could always use check-local to
run whatever you want.

check_PROGRAMS = tst_parallel
check-local:
        MP_TASKS_PER_NODE=4 MP_PROCS=4 poe ./tst_parallel

I don't find this very convenient when there is more test.  I
generally prefer the extra shell script because it allows me to
run a single test easily.
-- 
Alexandre Duret-Lutz





reply via email to

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