From: Jarkko Hietaniemi Date: Sat, 24 Nov 2001 04:07:39 +0000 (+0000) Subject: Move the MBF/MBI test modules to t/lib. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=edea50ec06f651303560542ed76f678a723a191d;p=p5sagit%2Fp5-mst-13.2.git Move the MBF/MBI test modules to t/lib. p4raw-id: //depot/perl@13230 --- diff --git a/MANIFEST b/MANIFEST index 2f61242..04da8ad 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1059,8 +1059,6 @@ lib/Math/BigInt/t/bigintc.t See if BigInt/Calc.pm works lib/Math/BigInt/t/bigintpm.inc Shared tests for bigintpm.t and sub_mbi.t lib/Math/BigInt/t/bigintpm.t See if BigInt.pm works lib/Math/BigInt/t/calling.t Test calling conventions -lib/Math/BigInt/t/Math/BigFloat/Subclass.pm Empty subclass of BigFloat for test -lib/Math/BigInt/t/Math/BigInt/Subclass.pm Empty subclass of BigInt for test lib/Math/BigInt/t/mbimbf.t BigInt/BigFloat accuracy, precicion and fallback, round_mode lib/Math/BigInt/t/sub_mbf.t Empty subclass test of BigFloat lib/Math/BigInt/t/sub_mbi.t Empty subclass test of BigInt @@ -2088,6 +2086,8 @@ t/lib/h2ph.h Test header file for h2ph t/lib/h2ph.pht Generated output from h2ph.h by h2ph, for comparison t/lib/locale/latin1 Part of locale.t in Latin 1 t/lib/locale/utf8 Part of locale.t in UTF8 +t/lib/Math/BigFloat/Subclass.pm Empty subclass of BigFloat for test +t/lib/Math/BigInt/Subclass.pm Empty subclass of BigInt for test t/lib/sample-tests/bailout Test data for Test::Harness t/lib/sample-tests/combined Test data for Test::Harness t/lib/sample-tests/descriptive Test data for Test::Harness diff --git a/lib/Math/BigInt/t/sub_mbf.t b/lib/Math/BigInt/t/sub_mbf.t index bde47fc..e903ac2 100755 --- a/lib/Math/BigInt/t/sub_mbf.t +++ b/lib/Math/BigInt/t/sub_mbf.t @@ -11,7 +11,7 @@ BEGIN if ($ENV{PERL_CORE}) { # testing with the core distribution - @INC = qw(../lib); + @INC = qw(../t/lib); } unshift @INC, '../lib'; if (-d 't') diff --git a/lib/Math/BigInt/t/sub_mbi.t b/lib/Math/BigInt/t/sub_mbi.t index 3f14535..e387f89 100755 --- a/lib/Math/BigInt/t/sub_mbi.t +++ b/lib/Math/BigInt/t/sub_mbi.t @@ -11,7 +11,7 @@ BEGIN if ($ENV{PERL_CORE}) { # testing with the core distribution - @INC = qw(../lib); + @INC = qw(../t/lib); } unshift @INC, qw(../lib); if (-d 't') diff --git a/lib/Math/BigInt/t/Math/BigFloat/Subclass.pm b/t/lib/Math/BigFloat/Subclass.pm similarity index 100% rename from lib/Math/BigInt/t/Math/BigFloat/Subclass.pm rename to t/lib/Math/BigFloat/Subclass.pm diff --git a/lib/Math/BigInt/t/Math/BigInt/Subclass.pm b/t/lib/Math/BigInt/Subclass.pm similarity index 100% rename from lib/Math/BigInt/t/Math/BigInt/Subclass.pm rename to t/lib/Math/BigInt/Subclass.pm