aboutsummaryrefslogtreecommitdiffstats
path: root/test.sh
blob: ae60bd884e1fcee577cd27e489bf1f6f74f10fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

success=0

printf "testing C implementation\n"
diff -u <(./test.awk ./jp-hash testvec) testvec || success=1
printf "testing TXR Lisp implementation\n"
diff -u <(./test.awk ./jp-hash.tlo testvec) testvec || success=1
printf "testing Javascript (Node.js) implementation\n"
diff -u <(./test.awk ./jp-hash.js testvec) testvec || success=1

exit $success