]> granicus.if.org Git - php/commitdiff
Fix test
authorMarcus Boerger <helly@php.net>
Mon, 19 May 2003 21:48:04 +0000 (21:48 +0000)
committerMarcus Boerger <helly@php.net>
Mon, 19 May 2003 21:48:04 +0000 (21:48 +0000)
ext/gd/tests/bug19366.phpt

index 5e4d7285b3913abfccb79ea7c4858388cb24e6a4..83dfa63100f8ebc0b080d868b454c66864999153 100644 (file)
@@ -7,18 +7,18 @@ gdimagefill() function (Bug #19366 (fixed in bundled libgd))
 ?>
 --FILE--
 <?php
-echo "Alive\n";
+echo "Alive: create image\n";
 $width = 50;
 $height = 100;
 $ImHandle = imagecreate($width,$height);
-echo "Alive\n";
-//Define colors
+
+echo "Alive: Define colors\n";
 $MyBlue = imagecolorAllocate($ImHandle, 0, 0, 255);
 $MyRed = imagecolorAllocate($ImHandle, 255, 0, 0);
 $MyWhite = imagecolorAllocate($ImHandle, 255, 255, 255);
 $MyBlack = imagecolorAllocate($ImHandle, 0, 0, 0);
-echo "Alive\n";
-//Draw
+
+echo "Alive: Draw\n";
 ImageFill($ImHandle,0,0,$MyBlack);
 ImageLine($ImHandle,20,20,180,20,$MyWhite);
 ImageLine($ImHandle,20,20,20,70,$MyBlue);
@@ -31,20 +31,23 @@ ImageLine($ImHandle,100,45,180,45,$MyRed);
 ImageFill($ImHandle,21,45,$MyBlue);
 ImageFill($ImHandle,100,69,$MyRed);
 ImageFill($ImHandle,100,21,$MyWhite);
+
+echo "Alive: ImageString\n";
 ImageString($ImHandle,4,40,75,"Czech Republic",$MyWhite);
-echo "Alive\n";
-// Send to browser
-Header("Content-type: image/PNG");
+
+echo "Alive: Send to browser\n";
+//Header("Content-type: image/PNG");
 //ImagePNG($ImHandle);
-echo "Alive\n";
-//Free resources
+
+echo "Alive: Free resources\n";
 imagedestroy($ImHandle);
-echo "Alive\n";
+echo "Alive: Done\n";
 ?>
 --EXPECT--
-Alive
-Alive
-Alive
-Alive
-Alive
-Alive
+Alive: create image
+Alive: Define colors
+Alive: Draw
+Alive: ImageString
+Alive: Send to browser
+Alive: Free resources
+Alive: Done