Commit: 87d57010656cf2a9252e898fdf69377b7a60b8ca Author: Xinchen Hui <larue...@php.net> Fri, 18 Jan 2013 15:12:51 +0800 Parents: ffc8850d44b7b8f2967ef49203a4c582f3eebd28 Branches: master
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=87d57010656cf2a9252e898fdf69377b7a60b8ca Log: Fix skipif section Changed paths: M Zend/tests/zend_signed_multiply-32bit.phpt M Zend/tests/zend_signed_multiply-64bit.phpt Diff: diff --git a/Zend/tests/zend_signed_multiply-32bit.phpt b/Zend/tests/zend_signed_multiply-32bit.phpt index 0a42bd4..3f37cba 100644 --- a/Zend/tests/zend_signed_multiply-32bit.phpt +++ b/Zend/tests/zend_signed_multiply-32bit.phpt @@ -1,7 +1,7 @@ --TEST-- Zend signed multiply 32-bit --SKIPIF-- -<? if ((1 << 31) > 0) print "skip Running on 64-bit target"; ?> +<?php if ((1 << 31) > 0) print "skip Running on 64-bit target"; ?> --FILE-- <?php var_dump(0x8000 * -0xffff); diff --git a/Zend/tests/zend_signed_multiply-64bit.phpt b/Zend/tests/zend_signed_multiply-64bit.phpt index 86e5292..94a6e03 100644 --- a/Zend/tests/zend_signed_multiply-64bit.phpt +++ b/Zend/tests/zend_signed_multiply-64bit.phpt @@ -1,7 +1,7 @@ --TEST-- Zend signed multiply 64-bit --SKIPIF-- -<? if ((1 << 31) < 0) print "skip Running on 32-bit target"; ?> +<?php if ((1 << 31) < 0) print "skip Running on 32-bit target"; ?> --FILE-- <?php var_dump(0x80000000 * -0xffffffff); -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php