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 c5199c2 commit 479ffd1Copy full SHA for 479ffd1
.github/workflows/libssl.yaml
@@ -41,6 +41,20 @@ jobs:
41
42
- run: make PROFILE=debug test
43
- run: make PROFILE=debug integration
44
+ # Note: we only check the client/server binaries here, assuming that
45
+ # is sufficient for any other test binaries.
46
+ - name: Verify debug builds were using ASAN
47
+ run: |
48
+ nm target/client | grep '__asan_init'
49
+ nm target/server | grep '__asan_init'
50
+ - name: Build release binaries
51
52
+ make clean
53
+ make PROFILE=release
54
+ - name: Verify release builds were not using ASAN
55
56
+ nm target/client | grep -v '__asan_init'
57
+ nm target/server | grep -v '__asan_init'
58
59
valgrind:
60
name: Valgrind
rustls-libssl/simpleserv.sh
0 commit comments