From 6ff72467dc2595183ef31b30b4d4195f65a78f57 Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Thu, 2 Jul 2015 20:49:30 +0200 Subject: [PATCH] XFAILED tests are not "You may have found a problem in PHP" --- run-tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.php b/run-tests.php index 70d9cc3f5d..1251d3f96d 100755 --- a/run-tests.php +++ b/run-tests.php @@ -324,7 +324,7 @@ function save_or_mail_results() /* We got failed Tests, offer the user to send an e-mail to QA team, unless NO_INTERACTION is set */ if (!getenv('NO_INTERACTION') && !TRAVIS_CI) { $fp = fopen("php://stdin", "r+"); - if ($sum_results['FAILED'] || $sum_results['BORKED'] || $sum_results['WARNED'] || $sum_results['LEAKED'] || $sum_results['XFAILED']) { + if ($sum_results['FAILED'] || $sum_results['BORKED'] || $sum_results['WARNED'] || $sum_results['LEAKED']) { echo "\nYou may have found a problem in PHP."; } echo "\nThis report can be automatically sent to the PHP QA team at\n"; -- 2.50.1