summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagefilledpolygon_negative.phpt
blob: a572a195f5d0fa5f64d7bb95c03fa33e8a45f6ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
imagefilledpolygon() with a negative num of points
--SKIPIF--
<?php
	if (!function_exists('imagefilledpolygon')) die('skip imagefilledpolygon() not available');
?>
--FILE--
<?php
$im = imagecreate(100, 100);
$black = imagecolorallocate($im, 0, 0, 0);
if (imagefilledpolygon($im, array(0, 0, 0, 0, 0, 0), -1, $black)) echo "should be false";
imagedestroy($im);
?>
--EXPECTF--
Warning: imagefilledpolygon(): You must give a positive number of points in %s on line %d