On 12/06/2012 10:33 AM, Pádraig Brady wrote: > - (cd tests && make check TESTS=misc/df VERBOSE=yes) >> log 2>&1 > + make check TESTS=tests/df/df-P.sh VERBOSE=yes SUBDIRS=. >> log 2>&1
BTW: when one wants to run several tests, e.g. all df tests, then the following can be used: $ make check TESTS="$( echo tests/df/*.sh )" SUBDIRS=. Please not that the quotes around $( ... ) are necessary, and that you need echo because it won't work with ls. Have a nice day, Berny
