We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8db08e3 commit 6342e48Copy full SHA for 6342e48
.github/workflows/test.yaml
@@ -44,6 +44,8 @@ jobs:
44
- env:
45
CARGO_UNSTABLE_HTTP_REGISTRY: true
46
run: make CC=${{ matrix.cc }} PROFILE=release test integration
47
+ - name: Platform verifier connect test
48
+ run: make connect-test
49
50
valgrind:
51
name: Valgrind
Makefile
@@ -34,6 +34,9 @@ test: all
34
integration: all
35
${CARGO} test ${CARGOFLAGS} -- --ignored
36
37
+connect-test: target/client
38
+ RUSTLS_PLATFORM_VERIFIER=1 target/client example.com 443 /
39
+
40
target:
41
mkdir -p $@
42
0 commit comments