#!/usr/bin/perl -w

use Test;
use strict;

BEGIN
  {
  $| = 1;
  unshift @INC, '../lib'; # for running manually
  my $location = $0; $location =~ s/bigintpm.t//;
  unshift @INC, $location; # to locate the testing files
  unshift @INC, '../blib/arch';
  chdir 't' if -d 't';
  plan tests => 3043;
  }

use Math::BigInt lib => 'GMP';

use vars qw ($scale $class $try $x $y $f @args $ans $ans1 $ans1_str $setup $CL);
$class = "Math::BigInt";
$CL = "Math::BigInt::GMP";

require 'bigintpm.inc';	# all tests here for sharing


syntax highlighted by Code2HTML, v. 0.9.1