summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imageinterlace_error2.phpt
blob: 808c88a31230583b4c7e650a1e45b5ed09e57e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Testing resource that is not a image to imageinterlace() of GD library
--CREDITS--
Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
#testfest PHPSP on 2009-06-20
--SKIPIF--
<?php 
if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
<?php
$image = fopen('php://stdin', 'r');
var_dump(imageinterlace($image));
?>
--EXPECTF--
Warning: imageinterlace(): supplied resource is not a valid Image resource in %s on line %d
bool(false)