sixd                                     Fri, 11 Feb 2011 01:37:06 +0000

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

Log:
Show XFAIL reasons (Daniel Convissor)

Changed paths:
    U   php/php-src/branches/PHP_5_3/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-02-11 01:34:03 UTC (rev 
308246)
+++ php/php-src/branches/PHP_5_3/run-tests.php  2011-02-11 01:37:06 UTC (rev 
308247)
@@ -1935,6 +1935,7 @@
        if (!$passed) {
                if (isset($section_text['XFAIL'])) {
                        $restype[] = 'XFAIL';
+                       $info = '  XFAIL REASON: ' . $section_text['XFAIL'];
                } else {
                        $restype[] = 'FAIL';
                }

Modified: php/php-src/trunk/run-tests.php
===================================================================
--- php/php-src/trunk/run-tests.php     2011-02-11 01:34:03 UTC (rev 308246)
+++ php/php-src/trunk/run-tests.php     2011-02-11 01:37:06 UTC (rev 308247)
@@ -1935,6 +1935,7 @@
        if (!$passed) {
                if (isset($section_text['XFAIL'])) {
                        $restype[] = 'XFAIL';
+                       $info = '  XFAIL REASON: ' . $section_text['XFAIL'];
                } else {
                        $restype[] = 'FAIL';
                }

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

Reply via email to