1--TEST--
2Testing imagecolordeallocate() of GD library with Out of range intergers (Above)
3--CREDITS--
4Rafael Dohms <rdohms [at] gmail [dot] com>
5#testfest PHPSP on 2009-06-20
6--SKIPIF--
7<?php
8	if (!extension_loaded("gd")) die("skip GD not present");
9?>
10--FILE--
11<?php
12$image = imagecreate(180, 30);
13$white = imagecolorallocate($image, 255, 255, 255);
14
15$totalColors = imagecolorstotal($image);
16
17$result = imagecolordeallocate($image, $totalColors + 100);
18var_dump($result);
19?>
20--EXPECTF--
21Warning: imagecolordeallocate(): Color index 101 out of range in %s on line %d
22bool(false)
23