summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorMatteo Beccati <mbeccati@php.net>2014-10-29 14:32:41 +0100
committerMatteo Beccati <mbeccati@php.net>2014-10-29 14:33:36 +0100
commita3b4f8320d61e57b9bbbbdc2aaa5cca943c11509 (patch)
tree01c67cae96680cef88d6f5847bb292264a8566ef /run-tests.php
parentdaf9357d272c810718aceae57e6e77cdc62e1be8 (diff)
downloadphp-git-a3b4f8320d61e57b9bbbbdc2aaa5cca943c11509.tar.gz
Don't treat warnings as failures in the junit output
This matches Travis and the actual return code.
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php
index cc20febf71..5563385ddf 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -2714,7 +2714,7 @@ function junit_mark_test_as($type, $file_name, $test_name, $time = null, $messag
if (is_array($type)) {
$output_type = $type[0] . 'ED';
- $temp = array_intersect(array('XFAIL', 'FAIL'), $type);
+ $temp = array_intersect(array('XFAIL', 'FAIL', 'WARN'), $type);
$type = reset($temp);
} else {
$output_type = $type . 'ED';
@@ -2728,6 +2728,9 @@ function junit_mark_test_as($type, $file_name, $test_name, $time = null, $messag
} elseif ('SKIP' == $type) {
junit_suite_record($suite, 'test_skip');
$JUNIT['files'][$file_name]['xml'] .= "<skipped>$escaped_message</skipped>\n";
+ } elseif ('WARN' == $type) {
+ junit_suite_record($suite, 'test_warn');
+ $JUNIT['files'][$file_name]['xml'] .= "<warning>$escaped_message</warning>\n";
} elseif('FAIL' == $type) {
junit_suite_record($suite, 'test_fail');
$JUNIT['files'][$file_name]['xml'] .= "<failure type='$output_type' message='$escaped_message'>$escaped_details</failure>\n";