Revert "Display a message if select in FPM test timeouts"

This reverts commit e2361498d5.

Ooops, this occurs normally during some tests, but I didn't notice
because I have slow tests disabled...
This commit is contained in:
Nikita Popov 2020-01-08 16:31:33 +01:00
parent e2361498d5
commit 4b860c06ed

View File

@ -622,11 +622,9 @@ class Tester
$read = [$this->outDesc];
$write = null;
$except = null;
$timeout = 3;
if (stream_select($read, $write, $except, $timeout)) {
if (stream_select($read, $write, $except, 3)) {
return fgets($this->outDesc);
} else {
$this->error("Select timeout ($timeout seconds)");
return null;
}
}