diff options
author | foobar <sniper@php.net> | 2005-06-17 16:22:55 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-06-17 16:22:55 +0000 |
commit | c24bd1584cc3718e32b9a945d69ab67dfded0ce0 (patch) | |
tree | fc813f8a0870fd765dce722ab215f825c97e6ed7 | |
parent | 2a314dbc475bce663d759bacf248979dfbfc54d2 (diff) | |
download | php-git-c24bd1584cc3718e32b9a945d69ab67dfded0ce0.tar.gz |
fix test - short_tags not allowed here!
-rw-r--r-- | ext/gmp/tests/bug32773.phpt | 4 |
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"; |