Skip to content

Commit 452e89d

Browse files
committed
more debug output
1 parent c359894 commit 452e89d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

run-tests.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1541,6 +1541,7 @@ function run_all_tests_parallel(array $test_files, array $env, $redir_tested): v
15411541
error("Could not find worker stdout in array of worker stdouts, THIS SHOULD NOT HAPPEN.");
15421542
}
15431543
while (false !== ($rawMessage = fgets($workerSock))) {
1544+
echo "Message Len: " . strlen($rawMessage), "\n";
15441545
// work around fgets truncating things
15451546
if (($rawMessageBuffers[$i] ?? '') !== '') {
15461547
$rawMessage = $rawMessageBuffers[$i] . $rawMessage;
@@ -1679,6 +1680,7 @@ function run_all_tests_parallel(array $test_files, array $env, $redir_tested): v
16791680
}
16801681
}
16811682
}
1683+
echo "Loop end\n";
16821684

16831685
if (!$SHOW_ONLY_GROUPS) {
16841686
clear_show_test();

0 commit comments

Comments
 (0)