]> granicus.if.org Git - php/commitdiff
Fix names of new image files.
authorandy wharmby <wharmby@php.net>
Fri, 23 Jan 2009 11:18:31 +0000 (11:18 +0000)
committerandy wharmby <wharmby@php.net>
Fri, 23 Jan 2009 11:18:31 +0000 (11:18 +0000)
ext/standard/tests/image/200x100.gif [moved from ext/standard/tests/image/200x100.GIF with 100% similarity]
ext/standard/tests/image/200x100.jpg [moved from ext/standard/tests/image/200x100.JPG with 100% similarity]
ext/standard/tests/image/200x100.png [moved from ext/standard/tests/image/200x100.PNG with 100% similarity]
ext/standard/tests/image/200x100.tif [moved from ext/standard/tests/image/200x100.TIF with 100% similarity]
ext/standard/tests/image/getimagesize_basic.phpt

index 8f4e2f4bc00cb1e417f536d4a4a9bd03ac88fd33..63ae334066ad1696fca391055453afaaaf8fb578 100644 (file)
@@ -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)