]> git.imager.perl.org - imager.git/commitdiff
- some sub-directory tests depended on files produced by the parent
authorTony Cook <tony@develop=help.com>
Fri, 26 Oct 2007 08:50:12 +0000 (08:50 +0000)
committerTony Cook <tony@develop=help.com>
Fri, 26 Oct 2007 08:50:12 +0000 (08:50 +0000)
   directory tests

Changes
DynTest/t/t00dyntest.t
TODO
dynfilt/t/t60dyntest.t

diff --git a/Changes b/Changes
index 59f7530d75c27edb5b9cd99c1a2f62e01217b01f..42f352947a5c576c6429812c3ed3640667c93a49 100644 (file)
--- a/Changes
+++ b/Changes
@@ -17,6 +17,10 @@ Bug fixes:
    also fixed some other type warnings
    https://rt.cpan.org/Ticket/Display.html?id=30204
 
+ - some sub-directory tests depended on files produced by the parent
+   directory tests
+   http://rt.cpan.org/Ticket/Display.html?id=30203
+
 Imager 0.60 - 30 August 2007
 ===========
 
index 87957a49e08e1fe83415723496a321794237cf94..e67e745cf3b76b0647e076bd2471ca4f696e7c7e 100644 (file)
@@ -9,7 +9,7 @@ BEGIN { use_ok('Imager::Filter::DynTest') }
 my $im = Imager->new;
 SKIP:
 {
-  ok($im->read(file => '../testout/t104.ppm'), "load source image")
+  ok($im->read(file => '../testimg/penguin-base.ppm'), "load source image")
     or skip("couldn't load work image", 2);
   ok($im->filter(type=>'lin_stretch', a => 50, b => 200),
      "try filter")
diff --git a/TODO b/TODO
index 752667327bf1e976f9b1eebc3cab0863a6444c42..05f323d54afff49899caff302a2650a0cbbd2e51 100644 (file)
--- a/TODO
+++ b/TODO
@@ -59,6 +59,9 @@ sz (#29936) (done)
 
 warning compiling datatypes.c on x64 (#30204) (done)
 
+dynfilt/t/t60dyntest.t relies on a file that may not exist (#30203)
+(done)
+
 For 0.60 (hopefully):
 
 RGB file support (#8666) (done)
index 5a2635d4378aceefe29296eed548b76e596a52fd..29fcca687199d2cc3f1f32b2e7cd3fa5dbbd8abd 100644 (file)
@@ -11,7 +11,7 @@ Imager::init('log'=>'../testout/t60dyntest.log');
 
 my $img=Imager->new() || die "unable to create image object\n";
 
-$img->read(file=>'../testout/t104.ppm',type=>'pnm') 
+$img->read(file=>'../testimg/penguin-base.ppm',type=>'pnm') 
   || die "failed: ",$img->{ERRSTR},"\n";
 
 my $plug='./dyntest.'.$Config{'so'};