We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b218b0e commit 1758c24Copy full SHA for 1758c24
1 file changed
.ci/coverage_more.sh
@@ -16,6 +16,19 @@ pdiv "Sizes"
16
pdiv "Constants"
17
./constants
18
19
+echo "" > x509_verify.log
20
+
21
+for n in tests/x509/*.pem; do
22
+ pdiv "X.509 verify $n"
23
+ ./x509_verify $n >>x509_verify.log 2>&1
24
+done
25
26
+pdiv "X.509 verify of all certs packaged"
27
+find tests/x509 -name '*.pem' -exec './x509_verify' {} \+ >>x509_verify.log 2>&1
28
29
+pdiv "X.509 verify of all certs packaged via STDIN"
30
+for f in $(find tests/x509 -maxdepth 2 -name '*.pem'); do echo "- - - - - - -"; echo $f; cat $f | ./x509_verify; done >>x509_verify.log 2>&1
31
32
pdiv "Generate hashsum_tv.txt"
33
for i in $(for j in $(echo $(./hashsum -h | awk '/Algorithms/,EOF' | tail -n +2)); do echo $j; done | sort); do
34
echo -n "$i: " && ./hashsum -a $i tests/test.key
0 commit comments