wharmby         Fri Jan 23 11:18:33 2009 UTC

  Added files:                 (Branch: PHP_5_2)
    /php-src/ext/standard/tests/image   200x100.tif 200x100.gif 
                                        200x100.png 200x100.jpg 

  Removed files:               
    /php-src/ext/standard/tests/image   200x100.GIF 200x100.PNG 
                                        200x100.TIF 200x100.JPG 

  Modified files:              
    /php-src/ext/standard/tests/image   getimagesize_basic.phpt 
  Log:
  Fix names of new image files. 
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/image/getimagesize_basic.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format=u
Index: php-src/ext/standard/tests/image/getimagesize_basic.phpt
diff -u php-src/ext/standard/tests/image/getimagesize_basic.phpt:1.2.2.2 
php-src/ext/standard/tests/image/getimagesize_basic.phpt:1.2.2.3
--- php-src/ext/standard/tests/image/getimagesize_basic.phpt:1.2.2.2    Thu Jan 
22 22:59:45 2009
+++ php-src/ext/standard/tests/image/getimagesize_basic.phpt    Fri Jan 23 
11:18:30 2009
@@ -9,13 +9,13 @@
 
 $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 @@
       "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 @@
 --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(0) {
 }
 
--- JPEG image file (200x100.JPG) --
+-- JPEG image file (200x100.jpg) --
 array(7) {
   [0]=>
   int(200)
@@ -91,7 +91,7 @@
   string(%d)%s
 }
 
--- PNG image file (200x100.PNG) --
+-- PNG image file (200x100.png) --
 array(6) {
   [0]=>
   int(200)
@@ -143,7 +143,7 @@
 array(0) {
 }
 
--- TIFF intel byte order image file (200x100.TIF) --
+-- TIFF intel byte order image file (200x100.tif) --
 array(5) {
   [0]=>
   int(200)

http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/image/200x100.tif?view=markup&rev=1.1
Index: php-src/ext/standard/tests/image/200x100.tif
+++ php-src/ext/standard/tests/image/200x100.tif



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to