gron Sun, 31 Jul 2011 16:35:09 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=313993
Log: Added: SKIP when tokenizer extension is not available Changed paths: U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_basic.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_error.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation1.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation10.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation11.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation12.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation13.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation14.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation15.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation16.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation17.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation18.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation19.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation2.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation3.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation4.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation5.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation6.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation7.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation8.phpt U php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation9.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_basic.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_error.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation1.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation10.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation11.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation12.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation13.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation14.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation15.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation16.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation17.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation18.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation19.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation2.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation3.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation4.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation5.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation6.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation7.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation8.phpt U php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation9.phpt
Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_basic.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_basic.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_basic.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : basic functionality +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_error.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_error.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_error.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : error conditions +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation1.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation1.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation1.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - unexpected values for 'source' argument +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation10.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation10.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation10.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with constant tokens +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation11.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation11.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation11.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with control structure tokens +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation12.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation12.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation12.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with predefined language constants +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation13.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation13.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation13.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with class/object constructs +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation14.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation14.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation14.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - invalid token values +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation15.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation15.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation15.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - heredoc string for 'source' +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --INI-- short_open_tag=On --FILE-- Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation16.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation16.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation16.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with function constructs +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation17.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation17.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation17.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with exception keywords +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation18.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation18.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation18.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with HTML code +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation19.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation19.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation19.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Reconstructing a script using token_get_all() +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation2.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation2.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation2.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with different arithmetic operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation3.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation3.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation3.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with logical operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation4.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation4.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation4.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with comparison operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation5.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation5.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation5.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with assignment operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation6.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation6.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation6.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with bitwise operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation7.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation7.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation7.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with increment/decrement operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation8.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation8.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation8.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with type casting operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation9.phpt =================================================================== --- php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation9.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/branches/PHP_5_4/ext/tokenizer/tests/token_get_all_variation9.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with different types of comments +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_basic.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_basic.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_basic.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : basic functionality +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_error.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_error.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_error.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : error conditions +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation1.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation1.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation1.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - unexpected values for 'source' argument +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation10.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation10.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation10.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with constant tokens +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation11.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation11.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation11.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with control structure tokens +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation12.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation12.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation12.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with predefined language constants +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation13.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation13.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation13.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with class/object constructs +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation14.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation14.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation14.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - invalid token values +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation15.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation15.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation15.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - heredoc string for 'source' +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --INI-- short_open_tag=On --FILE-- Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation16.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation16.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation16.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with function constructs +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation17.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation17.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation17.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with exception keywords +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation18.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation18.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation18.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with HTML code +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation19.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation19.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation19.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Reconstructing a script using token_get_all() +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation2.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation2.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation2.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with different arithmetic operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation3.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation3.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation3.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with logical operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation4.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation4.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation4.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with comparison operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation5.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation5.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation5.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with assignment operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation6.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation6.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation6.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with bitwise operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation7.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation7.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation7.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with increment/decrement operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation8.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation8.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation8.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with type casting operators +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source) Modified: php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation9.phpt =================================================================== --- php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation9.phpt 2011-07-31 16:15:40 UTC (rev 313992) +++ php/php-src/trunk/ext/tokenizer/tests/token_get_all_variation9.phpt 2011-07-31 16:35:09 UTC (rev 313993) @@ -1,5 +1,7 @@ --TEST-- Test token_get_all() function : usage variations - with different types of comments +--SKIPIF-- +<?php if (!extension_loaded("tokenizer")) print "skip"; ?> --FILE-- <?php /* Prototype : array token_get_all(string $source)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php