This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
In XS_VERSION_BOOTCHECK, correct the flags argument of get_sv() to 0.
[perl5.git] / cpan / Math-BigInt / t / bare_mbi.t
CommitLineData
394e6ffb
JH
1#!/usr/bin/perl -w
2
3use Test;
4use strict;
5
6BEGIN
7 {
8 $| = 1;
9 # to locate the testing files
10 my $location = $0; $location =~ s/bare_mbi.t//i;
394e6ffb
JH
11 if ($ENV{PERL_CORE})
12 {
13 # testing with the core distribution
14 @INC = qw(../t/lib);
15 }
16 unshift @INC, qw(../lib); # to locate the modules
17 if (-d 't')
18 {
19 chdir 't';
20 require File::Spec;
21 unshift @INC, File::Spec->catdir(File::Spec->updir, $location);
22 }
23 else
24 {
25 unshift @INC, $location;
26 }
27 print "# INC = @INC\n";
28
0dceeee6 29 plan tests => 3273;
394e6ffb
JH
30 }
31
32use Math::BigInt lib => 'BareCalc';
33
b3abae2a 34print "# ",Math::BigInt->config()->{lib},"\n";
61f5c3f5 35
394e6ffb
JH
36use vars qw ($class $try $x $y $f @args $ans $ans1 $ans1_str $setup $CL);
37$class = "Math::BigInt";
38$CL = "Math::BigInt::BareCalc";
39
50109ad0 40my $version = '1.84'; # for $VERSION tests, match current release (by hand!)
394e6ffb
JH
41
42require 'bigintpm.inc'; # perform same tests as bigintpm
43