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 26969bd commit 6793312Copy full SHA for 6793312
.github/workflows/push.yml
@@ -68,8 +68,6 @@ jobs:
68
uses: ./.github/actions/setup-x64
69
- name: Test
70
uses: ./.github/actions/test-linux
71
- env:
72
- RUN_CADDY_TESTS: "1"
73
- name: Test Tracing JIT
74
75
with:
ext/curl/tests/bug76675.phpt
@@ -4,7 +4,11 @@ Bug #76675 (Segfault with H2 server push write/writeheader handlers)
4
curl
5
--SKIPIF--
6
<?php
7
-if (!getenv("RUN_CADDY_TESTS")) {
+$curl = curl_init();
8
+curl_setopt($curl, CURLOPT_URL, "https://localhost/serverpush");
9
+$data = curl_exec($curl);
10
+curl_close($curl);
11
+if (!$data) {
12
die("skip test needing Caddy");
13
}
14
$curl_version = curl_version();
0 commit comments