johannes                                 Thu, 01 Sep 2011 14:52:55 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=315995

Log:
Improve speed of finding tests (no more CVS, we're on svn now)

Changed paths:
    U   php/php-src/branches/PHP_5_3/run-tests.php
    U   php/php-src/branches/PHP_5_4/run-tests.php
    U   php/php-src/trunk/run-tests.php

Modified: php/php-src/branches/PHP_5_3/run-tests.php
===================================================================
--- php/php-src/branches/PHP_5_3/run-tests.php  2011-09-01 14:32:05 UTC (rev 
315994)
+++ php/php-src/branches/PHP_5_3/run-tests.php  2011-09-01 14:52:55 UTC (rev 
315995)
@@ -866,7 +866,7 @@

        while (($name = readdir($o)) !== false) {

-               if (is_dir("{$dir}/{$name}") && !in_array($name, array('.', 
'..', 'CVS'))) {
+               if (is_dir("{$dir}/{$name}") && !in_array($name, array('.', 
'..', '.svn'))) {
                        $skip_ext = ($is_ext_dir && 
!in_array(strtolower($name), $exts_to_test));
                        if ($skip_ext) {
                                $exts_skipped++;

Modified: php/php-src/branches/PHP_5_4/run-tests.php
===================================================================
--- php/php-src/branches/PHP_5_4/run-tests.php  2011-09-01 14:32:05 UTC (rev 
315994)
+++ php/php-src/branches/PHP_5_4/run-tests.php  2011-09-01 14:52:55 UTC (rev 
315995)
@@ -866,7 +866,7 @@

        while (($name = readdir($o)) !== false) {

-               if (is_dir("{$dir}/{$name}") && !in_array($name, array('.', 
'..', 'CVS'))) {
+               if (is_dir("{$dir}/{$name}") && !in_array($name, array('.', 
'..', '.svn'))) {
                        $skip_ext = ($is_ext_dir && 
!in_array(strtolower($name), $exts_to_test));
                        if ($skip_ext) {
                                $exts_skipped++;

Modified: php/php-src/trunk/run-tests.php
===================================================================
--- php/php-src/trunk/run-tests.php     2011-09-01 14:32:05 UTC (rev 315994)
+++ php/php-src/trunk/run-tests.php     2011-09-01 14:52:55 UTC (rev 315995)
@@ -866,7 +866,7 @@

        while (($name = readdir($o)) !== false) {

-               if (is_dir("{$dir}/{$name}") && !in_array($name, array('.', 
'..', 'CVS'))) {
+               if (is_dir("{$dir}/{$name}") && !in_array($name, array('.', 
'..', '.svn'))) {
                        $skip_ext = ($is_ext_dir && 
!in_array(strtolower($name), $exts_to_test));
                        if ($skip_ext) {
                                $exts_skipped++;
@@ -1239,7 +1239,7 @@
                }

                // Match the beginning of a section.
-               if (preg_match(b'/^--([_A-Z]+)--/', $line, $r)) {
+               if (preg_match('/^--([_A-Z]+)--/', $line, $r)) {
                        $section = $r[1];
                        settype($section, STRING_TYPE);


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to