mirror of
https://github.com/php/php-src.git
synced 2024-12-14 12:26:19 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
15 lines
343 B
PHP
15 lines
343 B
PHP
--TEST--
|
|
Zend signed multiply 64-bit, variation 1
|
|
--SKIPIF--
|
|
<?php if ((1 << 31) < 0) print "skip Running on 32-bit target"; ?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(0x80000000 * -0xffffffff);
|
|
var_dump(0x80000001 * 0xfffffffe);
|
|
var_dump(0x80000001 * -0xffffffff);
|
|
?>
|
|
--EXPECT--
|
|
int(-9223372034707292160)
|
|
int(9223372036854775806)
|
|
float(-9.2233720390023E+18)
|