We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bb63f1 commit 8f7986bCopy full SHA for 8f7986b
1 file changed
coverage_more.sh
@@ -5,7 +5,7 @@ set -e
5
./sizes
6
./constants
7
8
-for i in $(for j in $(echo $(./hashsum -h | tail -n +3)); do echo $j; done | sort); do echo -n "$i: " && ./hashsum -a $i tests/test.key ; done > hashsum_tv.txt
+for i in $(for j in $(echo $(./hashsum -h | awk '/Algorithms/,EOF' | tail -n +2)); do echo $j; done | sort); do echo -n "$i: " && ./hashsum -a $i tests/test.key ; done > hashsum_tv.txt
9
difftroubles=$(diff -i -w -B hashsum_tv.txt notes/hashsum_tv.txt | grep '^<') || true
10
if [ -n "$difftroubles" ]; then
11
echo "FAILURE: hashsum_tv.tx"
0 commit comments