zoe Mon, 31 Aug 2009 19:22:29 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=287925
Log: add missing skipifs Changed paths: U php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcdiv_error1.phpt U php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcdiv_error2.phpt U php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcmod_error1.phpt U php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error1.phpt U php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error2.phpt U php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error3.phpt U php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcsqrt_error1.phpt U php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcdiv_error1.phpt U php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcdiv_error2.phpt U php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcmod_error1.phpt U php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error1.phpt U php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error2.phpt U php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error3.phpt U php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcsqrt_error1.phpt U php/php-src/trunk/ext/bcmath/tests/bcdiv_error1.phpt U php/php-src/trunk/ext/bcmath/tests/bcdiv_error2.phpt U php/php-src/trunk/ext/bcmath/tests/bcmod_error1.phpt U php/php-src/trunk/ext/bcmath/tests/bcpowmod_error1.phpt U php/php-src/trunk/ext/bcmath/tests/bcpowmod_error2.phpt U php/php-src/trunk/ext/bcmath/tests/bcpowmod_error3.phpt U php/php-src/trunk/ext/bcmath/tests/bcsqrt_error1.phpt
Modified: php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcdiv_error1.phpt =================================================================== --- php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcdiv_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcdiv_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -4,6 +4,8 @@ TestFest2009 Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcdiv('10.99', '0'); Modified: php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcdiv_error2.phpt =================================================================== --- php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcdiv_error2.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcdiv_error2.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcdiv('1', '2', '3', '4'); Modified: php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcmod_error1.phpt =================================================================== --- php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcmod_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcmod_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcmod('1', '2', '3'); Modified: php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error1.phpt =================================================================== --- php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcpowmod('1'); Modified: php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error2.phpt =================================================================== --- php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error2.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error2.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcpowmod('1', '2'); Modified: php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error3.phpt =================================================================== --- php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error3.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcpowmod_error3.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcpowmod('1', '2', '3', '4', '5'); Modified: php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcsqrt_error1.phpt =================================================================== --- php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcsqrt_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_2/ext/bcmath/tests/bcsqrt_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcsqrt('-9'); Modified: php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcdiv_error1.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcdiv_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcdiv_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -4,6 +4,8 @@ TestFest2009 Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcdiv('10.99', '0'); Modified: php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcdiv_error2.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcdiv_error2.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcdiv_error2.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcdiv('1', '2', '3', '4'); Modified: php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcmod_error1.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcmod_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcmod_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcmod('1', '2', '3'); Modified: php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error1.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcpowmod('1'); Modified: php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error2.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error2.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error2.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcpowmod('1', '2'); Modified: php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error3.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error3.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcpowmod_error3.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcpowmod('1', '2', '3', '4', '5'); Modified: php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcsqrt_error1.phpt =================================================================== --- php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcsqrt_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/branches/PHP_5_3/ext/bcmath/tests/bcsqrt_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcsqrt('-9'); Modified: php/php-src/trunk/ext/bcmath/tests/bcdiv_error1.phpt =================================================================== --- php/php-src/trunk/ext/bcmath/tests/bcdiv_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/trunk/ext/bcmath/tests/bcdiv_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -4,6 +4,8 @@ TestFest2009 Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcdiv('10.99', '0'); Modified: php/php-src/trunk/ext/bcmath/tests/bcdiv_error2.phpt =================================================================== --- php/php-src/trunk/ext/bcmath/tests/bcdiv_error2.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/trunk/ext/bcmath/tests/bcdiv_error2.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcdiv('1', '2', '3', '4'); Modified: php/php-src/trunk/ext/bcmath/tests/bcmod_error1.phpt =================================================================== --- php/php-src/trunk/ext/bcmath/tests/bcmod_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/trunk/ext/bcmath/tests/bcmod_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcmod('1', '2', '3'); Modified: php/php-src/trunk/ext/bcmath/tests/bcpowmod_error1.phpt =================================================================== --- php/php-src/trunk/ext/bcmath/tests/bcpowmod_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/trunk/ext/bcmath/tests/bcpowmod_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcpowmod('1'); Modified: php/php-src/trunk/ext/bcmath/tests/bcpowmod_error2.phpt =================================================================== --- php/php-src/trunk/ext/bcmath/tests/bcpowmod_error2.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/trunk/ext/bcmath/tests/bcpowmod_error2.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcpowmod('1', '2'); Modified: php/php-src/trunk/ext/bcmath/tests/bcpowmod_error3.phpt =================================================================== --- php/php-src/trunk/ext/bcmath/tests/bcpowmod_error3.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/trunk/ext/bcmath/tests/bcpowmod_error3.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcpowmod('1', '2', '3', '4', '5'); Modified: php/php-src/trunk/ext/bcmath/tests/bcsqrt_error1.phpt =================================================================== --- php/php-src/trunk/ext/bcmath/tests/bcsqrt_error1.phpt 2009-08-31 18:12:47 UTC (rev 287924) +++ php/php-src/trunk/ext/bcmath/tests/bcsqrt_error1.phpt 2009-08-31 19:22:29 UTC (rev 287925) @@ -3,6 +3,8 @@ --CREDITS-- Antoni Torrents ant...@solucionsinternet.com +--SKIPIF-- +<?php if(!extension_loaded("bcmath")) print "skip"; ?> --FILE-- <?php echo bcsqrt('-9');
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php