From a3879208c5b3e39593129a2b438ec39d6a0c20da Mon Sep 17 00:00:00 2001 From: Joe Watkins Date: Thu, 30 May 2019 07:46:31 +0200 Subject: [PATCH] have parallel test runner respect NO_INTERACTION --- run-tests.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/run-tests.php b/run-tests.php index f6f18354c0..e776335fdd 100755 --- a/run-tests.php +++ b/run-tests.php @@ -474,6 +474,7 @@ NO_PROC_OPEN_ERROR; break; case 'q': putenv('NO_INTERACTION=1'); + $environment['NO_INTERACTION'] = 1; break; //case 'r' case 's': @@ -1588,9 +1589,12 @@ escape: $PHP_FAILED_TESTS[$category] = array_merge($PHP_FAILED_TESTS[$category], $tests); } $test_idx++; - clear_show_test(); - echo $resultText; - show_test($test_idx, count($workerProcs) . "/$workers concurrent test workers running"); + + if (!isset($env['NO_INTERACTION']) || !$env['NO_INTERACTION']) { + clear_show_test(); + echo $resultText; + show_test($test_idx, count($workerProcs) . "/$workers concurrent test workers running"); + } if (!is_array($name) && $result != 'REDIR') { $test_results[$index] = $result; -- 2.50.1