upstream: github.com/mirleft/ocaml-x509
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(x509): add missing testcertificates dep to custom_pp rule

The rule generating custom_pp.output needs to depend on the
testcertificates directory since the executable reads fido.pem.

+6 -3
+6 -3
tests/custom_pp/dune
··· 4 4 (libraries x509 asn1-combinators fmt)) 5 5 6 6 (rule 7 - (with-stdout-to 8 - custom_pp.output 9 - (run ./custom_pp.exe))) 7 + (deps 8 + (source_tree ../testcertificates)) 9 + (action 10 + (with-stdout-to 11 + custom_pp.output 12 + (run ./custom_pp.exe)))) 10 13 11 14 (rule 12 15 (alias runtest)