1#!/usr/bin/perl -w 2 3use Test; 4use strict; 5 6BEGIN 7 { 8 $| = 1; 9 unshift @INC, '../lib'; # for running manually 10 my $location = $0; $location =~ s/bigintpm.t//; 11 unshift @INC, $location; # to locate the testing files 12 chdir 't' if -d 't'; 13 plan tests => 2832; 14 } 15 16use Math::BigInt; 17 18use vars qw ($scale $class $try $x $y $f @args $ans $ans1 $ans1_str $setup $CL); 19$class = "Math::BigInt"; 20$CL = "Math::BigInt::Calc"; 21 22require 'bigintpm.inc'; # all tests here for sharing 23