mirror of
https://github.com/php/php-src.git
synced 2026-04-23 07:58:20 +02:00
a555cc0b3d
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
19 lines
423 B
PHP
19 lines
423 B
PHP
--TEST--
|
|
Bug #73957 (signed integer conversion in imagescale())
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('gd')) die('skip gd extension not available');
|
|
if (PHP_INT_SIZE != 8) die('skip this test is for 64bit platforms only');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$im = imagecreate(8, 8);
|
|
$im = imagescale($im, 0x100000001, 1);
|
|
var_dump($im);
|
|
if ($im) { // which is not supposed to happen
|
|
var_dump(imagesx($im));
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|