nmake test
big list of test names.."line too long"
Well, I guess that's one problem to have, too many test files under Windows. After googling, I came upon this post about the issue, and decided to upgrade my EU::MM install. The upgrade didn't fix my problem until I removed this from my Makefile.PL:
test => { TESTS => join ' ', (glob("t/*.t t/*/*.t"))}
It's a good thing I decided not to use subdirectories for tests, or I would be screwed right now. Now the real question is, what happens to the testers runs when I slap a "use ExtUtils::MakeMaker 6.25" at the top of my Makefile?
Bad things happen... (Score:1)
running 'perl Makefile.PL' will just die with an error,
and that's the end of the install process
Safest bet is to bundle it in an inc/ directory. You
could look at Module::Install to see how to do this.
You *could* add to your Prereq_pm, but that doesn't
save you from writing a Makefile with the old EU::MM
that you had loaded when executing this, so you'd have
to do clever Makefile trickery with a preamble section
*shudder*
Re:Bad things happen... (Score:1)
How many tests... who cares? (Score:2)
Re: Too Many Tests (Score:1)
Jim Keenan (perplexed)