aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2023-09-15 23:11:58 +0200
committerJakob Unterwurzacher2023-09-15 23:11:58 +0200
commit44e3635cf6e914025b2e1e032312ef5b8aafe258 (patch)
tree6a35d9b9d2b7fa6cf3f97ba28b9785e3eca00838
parent7fff33a1e2560c8f4eb1f477c1e220eeb14291ab (diff)
gocryptfs -speed: call testing.Init() to fix panictesting_init
Looks like I should have been calling testing.Init() all along. From https://pkg.go.dev/testing#Init : > Init is only needed when calling functions such as > Benchmark without using "go test". Fixes: https://github.com/rfjakob/gocryptfs/issues/789 Relates-to: https://github.com/golang/go/issues/62666
-rw-r--r--internal/speed/speed.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/speed/speed.go b/internal/speed/speed.go
index 47fe8c9..a361cf5 100644
--- a/internal/speed/speed.go
+++ b/internal/speed/speed.go
@@ -48,6 +48,7 @@ func Run() {
{name: cryptocore.BackendXChaCha20Poly1305OpenSSL.String(), f: bStupidXchacha, preferred: stupidgcm.PreferOpenSSLXchacha20poly1305()},
{name: cryptocore.BackendXChaCha20Poly1305.String(), f: bXchacha20poly1305, preferred: !stupidgcm.PreferOpenSSLXchacha20poly1305()},
}
+ testing.Init()
for _, b := range bTable {
fmt.Printf("%-26s\t", b.name)
mbs := mbPerSec(testing.Benchmark(b.f))