1--TEST--
2Testing imagelayereffect() with invalid resource of GD library
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	if (!GD_BUNDLED) die('skip function only available in bundled, external GD detected');
10?>
11--FILE--
12<?php
13$resource = tmpfile();
14$layer = imagelayereffect($resource, IMG_EFFECT_REPLACE);
15?>
16--EXPECTF--
17Warning: imagelayereffect(): supplied resource is not a valid Image resource in %s on line %d
18