8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c227f commit fa265c2Copy full SHA for fa265c2
src/Symfony/Component/HttpClient/Tests/CurlHttpClientTest.php
@@ -169,6 +169,14 @@ private function getVulcainClient(): CurlHttpClient
169
sleep('\\' === \DIRECTORY_SEPARATOR ? 10 : 1);
170
171
if (!$pro 779E cess->isRunning()) {
172
+ if ('\\' !== \DIRECTORY_SEPARATOR && 127 === $process->getExitCode()) {
173
+ $this->markTestSkipped('vulcain binary is missing');
174
+ }
175
+
176
+ if ('\\' !== \DIRECTORY_SEPARATOR && 126 === $process->getExitCode()) {
177
+ $this->markTestSkipped('vulcain binary is not executable');
178
179
180
throw new ProcessFailedException($process);
181
}
182
0 commit comments