You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2026. It is now read-only.
run something like valgrind --exit-on-first-error=yes --error-exitcode=1 nginx -g 'daemon off;' & instead of nginx
add some mild stress testing, e.g. for ((x=0; x<100; x++)); do curl http://localhost:8080/certs/cert.cbor >/dev/null 2>&1 & done (and ditto for an SXG)
Optionally, research non-default args to valgrind, or other dynamic analysis tools.
In
end-to-end-test.yml:apt install valgrindinto the containervalgrind --exit-on-first-error=yes --error-exitcode=1 nginx -g 'daemon off;' &instead ofnginxfor ((x=0; x<100; x++)); do curl http://localhost:8080/certs/cert.cbor >/dev/null 2>&1 & done(and ditto for an SXG)Optionally, research non-default args to valgrind, or other dynamic analysis tools.