diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-04 01:18:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-04 01:18:02 +0000 |
commit | 9393ace2f22338dd25b6a689e53031fa2599038f (patch) | |
tree | 2db873d09515245eb6cae23bb7b517a940abef2f /lib/Math/BigInt/t/upgrade.t | |
parent | 6c6138478e8a64e245418ecd761aec9bc8d89ae1 (diff) | |
download | perl-9393ace2f22338dd25b6a689e53031fa2599038f.tar.gz |
Upgrade to Math::BigInt 1.54.
p4raw-id: //depot/perl@14972
Diffstat (limited to 'lib/Math/BigInt/t/upgrade.t')
-rw-r--r-- | lib/Math/BigInt/t/upgrade.t | 27 |
1 files changed, 6 insertions, 21 deletions
diff --git a/lib/Math/BigInt/t/upgrade.t b/lib/Math/BigInt/t/upgrade.t index 86bd139280..17d505c3e2 100644 --- a/lib/Math/BigInt/t/upgrade.t +++ b/lib/Math/BigInt/t/upgrade.t @@ -6,27 +6,12 @@ use strict; BEGIN { $| = 1; - # to locate the testing files - my $location = $0; $location =~ s/upgrade.t//i; - if ($ENV{PERL_CORE}) - { - @INC = qw(../t/lib); # testing with the core distribution - } - unshift @INC, '../lib'; # for testing manually - if (-d 't') - { - chdir 't'; - require File::Spec; - unshift @INC, File::Spec->catdir(File::Spec->updir, $location); - } - else - { - unshift @INC, $location; - } - print "# INC = @INC\n"; - - plan tests => 1990 - + 2; # our own tests + unshift @INC, '../lib'; # for running manually + my $location = $0; $location =~ s/bigintpm.t//; + unshift @INC, $location; # to locate the testing files + chdir 't' if -d 't'; + plan tests => 2056 + + 2; # our own tests } use Math::BigInt upgrade => 'Math::BigFloat'; |