21 lines
569 B
Makefile
21 lines
569 B
Makefile
test-crypto-dsa-all: test-crypto-dsa test-crypto-dsa-benchmarks
|
|
|
|
test-crypto-dsa:
|
|
go test -v ./lib/crypto -run TestDSA
|
|
|
|
test-crypto-dsa-benchmarks:
|
|
go test -v ./lib/crypto -bench=DSA -run=^$
|
|
|
|
# Individual benchmarks
|
|
test-crypto-dsa-bench-generate:
|
|
go test -v ./lib/crypto -bench=DSAGenerate -run=^$
|
|
|
|
test-crypto-dsa-bench-sign-verify:
|
|
go test -v ./lib/crypto -bench=DSASignVerify -run=^$
|
|
|
|
.PHONY: test-crypto-dsa-all \
|
|
test-crypto-dsa \
|
|
test-crypto-dsa-benchmarks \
|
|
test-crypto-dsa-bench-generate \
|
|
test-crypto-dsa-bench-sign-verify
|