Front page | perl.perl5.porters |
Postings from November 2011
Re: Perl test suite
Thread Previous
From:
Steffen Mueller
Date:
November 27, 2011 23:19
Subject:
Re: Perl test suite
Message ID:
4ED335E0.8000006@cpan.org
Hi Sunil,
On 11/28/2011 07:55 AM, Sunil Bojanapally wrote:
> I am trying to port Perl-5.10.0 to my target NetBSD system.
> How do i know that Perl has successfully ported ?
> Is their any Perl test suite to check that ?
indeed, there is a very big test suite that ships with perl. It is
probably best if you grab a copy of the current development version of
perl instead of trying to port an outdated version.
Have a look at
http://perl5.git.perl.org/perl.git
where (if you're not familiar with git) you can download tarballs of
various versions and snapshots of perl.
But ideally, you do this:
git clone git://perl5.git.perl.org/perl.git
cd perl
./Configure (...possibly some options...)
make
make test
If you also want to try the most recent stable version, after the above,
you can do: (in the perl repository directory)
git clean -dxf (cleans up build byproducts)
git checkout v5.14.2
./Configure
make
make test
Best regards,
Steffen
Thread Previous