mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-14 04:44:40 -04:00
21 lines
581 B
Makefile
21 lines
581 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
|