summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-06-17 16:23:04 +0000
committerfoobar <sniper@php.net>2005-06-17 16:23:04 +0000
commita29aa6577d3980e1978dcb0c3446cdf686186f44 (patch)
tree43e5bc795bf61df0c47b40e46872c379c403054f /ext
parenta07fe81c3893e7daea8640fec1c28bc776944ca2 (diff)
downloadphp-git-a29aa6577d3980e1978dcb0c3446cdf686186f44.tar.gz
MFH
Diffstat (limited to 'ext')
-rw-r--r--ext/gmp/tests/bug32773.phpt4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/gmp/tests/bug32773.phpt b/ext/gmp/tests/bug32773.phpt
index 0890362c7d..feb9d8d755 100644
--- a/ext/gmp/tests/bug32773.phpt
+++ b/ext/gmp/tests/bug32773.phpt
@@ -2,10 +2,8 @@
Bug #32773 binary GMP functions returns unexpected value, when second parameter is int(0)
--SKIPIF--
<?php if (!extension_loaded("gmp")) print "skip"; ?>
---POST--
---GET--
--FILE--
-<?
+<?php
echo '10 + 0 = ', gmp_strval(gmp_add(10, 0)), "\n";
echo '10 + "0" = ', gmp_strval(gmp_add(10, '0')), "\n";