Skip to content

Commit 6793312

Browse files
committed
wip
1 parent 26969bd commit 6793312

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
@@ -68,8 +68,6 @@ jobs:
6868
uses: ./.github/actions/setup-x64
6969
- name: Test
7070
uses: ./.github/actions/test-linux
71-
env:
72-
RUN_CADDY_TESTS: "1"
7371
- name: Test Tracing JIT
7472
uses: ./.github/actions/test-linux
7573
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)