Skip to content

Commit b2e1153

Browse files
committed
ci: improve debugging
1 parent 3920643 commit b2e1153

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tests/system_integration.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,8 @@ pub fn test_native_jail_blocks_https<P: JailTestPlatform>() {
248248
.arg("--")
249249
.arg("curl")
250250
.arg("-v")
251+
.arg("--trace-ascii")
252+
.arg("/dev/stderr") // Send trace to stderr for debugging
251253
.arg("--connect-timeout")
252254
.arg("2")
253255
.arg("-I") // HEAD request only
@@ -349,6 +351,8 @@ pub fn test_jail_https_connect_allowed<P: JailTestPlatform>() {
349351
.arg("--")
350352
.arg("curl")
351353
.arg("-v")
354+
.arg("--trace-ascii")
355+
.arg("/dev/stderr") // Send trace to stderr for debugging
352356
.arg("--connect-timeout")
353357
.arg("2")
354358
.arg("-I") // HEAD request only
@@ -451,6 +455,8 @@ pub fn test_jail_https_connect_denied<P: JailTestPlatform>() {
451455
.arg("--")
452456
.arg("curl")
453457
.arg("-v")
458+
.arg("--trace-ascii")
459+
.arg("/dev/stderr") // Send trace to stderr for debugging
454460
.arg("--connect-timeout")
455461
.arg("2")
456462
.arg("-I") // HEAD request only

0 commit comments

Comments
 (0)