On Jul 7, 2005, at 6:12 PM, Marvin Humphrey wrote:
Out of curiosity, do you ever "perl -Ilib t/01-simple.t" from within the top-level directory, or do you always "make test"? It looks to me like only the latter would work with that directory structure.
Right. If you want to run a single test file, you can do: make; perl -Mblib t/01-simple.t or make test TEST_FILES=t/01-simple.t or even make test TEST_FILES=t/01-simple.t VERBOSE=1 . -Ken