From 3f2bc9daa6700803ce26a7d3b21f5bf442a526ef Mon Sep 17 00:00:00 2001 From: andy wharmby Date: Fri, 23 Jan 2009 11:18:31 +0000 Subject: [PATCH] Fix names of new image files. --- .../tests/image/{200x100.GIF => 200x100.gif} | Bin .../tests/image/{200x100.JPG => 200x100.jpg} | Bin .../tests/image/{200x100.PNG => 200x100.png} | Bin .../tests/image/{200x100.TIF => 200x100.tif} | Bin .../tests/image/getimagesize_basic.phpt | 16 ++++++++-------- 5 files changed, 8 insertions(+), 8 deletions(-) rename ext/standard/tests/image/{200x100.GIF => 200x100.gif} (100%) rename ext/standard/tests/image/{200x100.JPG => 200x100.jpg} (100%) rename ext/standard/tests/image/{200x100.PNG => 200x100.png} (100%) rename ext/standard/tests/image/{200x100.TIF => 200x100.tif} (100%) diff --git a/ext/standard/tests/image/200x100.GIF b/ext/standard/tests/image/200x100.gif similarity index 100% rename from ext/standard/tests/image/200x100.GIF rename to ext/standard/tests/image/200x100.gif diff --git a/ext/standard/tests/image/200x100.JPG b/ext/standard/tests/image/200x100.jpg similarity index 100% rename from ext/standard/tests/image/200x100.JPG rename to ext/standard/tests/image/200x100.jpg diff --git a/ext/standard/tests/image/200x100.PNG b/ext/standard/tests/image/200x100.png similarity index 100% rename from ext/standard/tests/image/200x100.PNG rename to ext/standard/tests/image/200x100.png diff --git a/ext/standard/tests/image/200x100.TIF b/ext/standard/tests/image/200x100.tif similarity index 100% rename from ext/standard/tests/image/200x100.TIF rename to ext/standard/tests/image/200x100.tif diff --git a/ext/standard/tests/image/getimagesize_basic.phpt b/ext/standard/tests/image/getimagesize_basic.phpt index 8f4e2f4bc0..63ae334066 100644 --- a/ext/standard/tests/image/getimagesize_basic.phpt +++ b/ext/standard/tests/image/getimagesize_basic.phpt @@ -9,13 +9,13 @@ Test getimagesize() function : basic functionality $imagetype_filenames = array( // GIF file - "GIF image file" => "200x100.GIF", + "GIF image file" => "200x100.gif", //JPEG file - "JPEG image file" => "200x100.JPG", + "JPEG image file" => "200x100.jpg", //PNG file - "PNG image file" => "200x100.PNG", + "PNG image file" => "200x100.png", //SWF file "SWF image file" => "200x100.swf", @@ -24,7 +24,7 @@ $imagetype_filenames = array( "BMP image file" => "200x100.bmp", //TIFF intel byte order - "TIFF intel byte order image file" => "200x100.TIF", + "TIFF intel byte order image file" => "200x100.tif", //JPC file "JPC image file" => "test1pix.jpc", @@ -49,7 +49,7 @@ foreach($imagetype_filenames as $key => $filename) { --EXPECTF-- *** Testing getimagesize() : basic functionality *** --- GIF image file (200x100.GIF) -- +-- GIF image file (200x100.gif) -- array(7) { [0]=> int(200) @@ -69,7 +69,7 @@ array(7) { array(0) { } --- JPEG image file (200x100.JPG) -- +-- JPEG image file (200x100.jpg) -- array(7) { [0]=> int(200) @@ -91,7 +91,7 @@ array(1) { string(%d)%s } --- PNG image file (200x100.PNG) -- +-- PNG image file (200x100.png) -- array(6) { [0]=> int(200) @@ -143,7 +143,7 @@ array(6) { array(0) { } --- TIFF intel byte order image file (200x100.TIF) -- +-- TIFF intel byte order image file (200x100.tif) -- array(5) { [0]=> int(200) -- 2.50.1