Skip to content

Commit 4ce7676

Browse files
committed
wip
1 parent 6e8729e commit 4ce7676

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/push.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ jobs:
6565
uses: ./.github/actions/setup-x64
6666
- name: Test
6767
uses: ./.github/actions/test-linux
68-
env:
69-
RUN_CADDY_TESTS: "1"
7068
- name: Test Tracing JIT
7169
uses: ./.github/actions/test-linux
7270
with:

ext/curl/tests/bug76675.phpt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ Bug #76675 (Segfault with H2 server push write/writeheader handlers)
44
curl
55
--SKIPIF--
66
<?php
7-
if (!getenv("RUN_CADDY_TESTS")) {
7+
$curl = curl_init();
8+
curl_setopt($curl, CURLOPT_URL, "https://localhost/serverpush");
9+
$data = curl_exec($curl);
10+
curl_close($curl);
11+
if (!$data) {
812
die("skip test needing Caddy");
913
}
1014
$curl_version = curl_version();

0 commit comments

Comments
 (0)