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 dc1d062 commit 64db290Copy full SHA for 64db290
Tests/CurlHttpClientTest.php
@@ -169,6 +169,14 @@ private function getVulcainClient(): CurlHttpClient
169
sleep('\\' === \DIRECTORY_SEPARATOR ? 10 : 1);
170
171
if (!$process->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