[Perlunit-users] Re: test-unit-0.24 Installation
Status: Beta
Brought to you by:
mca1001
From: Adam S. <ad...@sp...> - 2003-03-16 12:36:10
|
[Please send queries to the perlunit-users mailing list.] Jitendra Barlinge (jx...@ac...) wrote: > I am trying to install Test-Unit-0.24 on windows NT 6.0 sp 6a having perl > v5.6.1 build 629 > > downloaded and copied the whole tree in a folder then copied following: > Devel\Symdump.pm > Error.pm > Class\Inner.pm > base.pm > > then I did the following > > perl makefile.pl > namke > namke test > > when I do "namke test" it causes a crash on each test except try_examples > > I get following on the STDOUT > > Failed 3/3 test scripts, 0.00% okay. 1/4 subtests failed, 75.00% okay. > name : fatal error U1077: d:\perl\bin\perl.exe : return code '0xff' > stop > > > am I doing something wrong? Yes, you should follow the perl Makefile.PL make make test make install procedure for each individual module, rather than copying .pm files around manually. If at any stage, `make test' fails, run it as make test TEST_VERBOSE=y to see which test failed. |