Skip to content

Commit 22213de

Browse files
committed
only clear when showing in parallel runner
1 parent b165672 commit 22213de

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

run-tests.php

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1593,8 +1593,12 @@ function run_all_tests_parallel($test_files, $env, $redir_tested) {
15931593
}
15941594
$test_idx++;
15951595

1596-
clear_show_test();
1596+
if (!$SHOW_ONLY_GROUPS) {
1597+
clear_show_test();
1598+
}
1599+
15971600
echo $resultText;
1601+
15981602
if (!$SHOW_ONLY_GROUPS) {
15991603
show_test($test_idx, count($workerProcs) . "/$workers concurrent test workers running");
16001604
}
@@ -1643,7 +1647,9 @@ function run_all_tests_parallel($test_files, $env, $redir_tested) {
16431647
}
16441648
}
16451649

1646-
clear_show_test();
1650+
if (!$SHOW_ONLY_GROUPS) {
1651+
clear_show_test();
1652+
}
16471653

16481654
kill_children($workerProcs);
16491655

0 commit comments

Comments
 (0)