Add 1MB block benchmarks

master
Harshavardhana 10 years ago
parent acee4d16fd
commit 7feca3f0d1
  1. 6
      pkg/utils/crypto/sha1/sha1_test.go
  2. 6
      pkg/utils/crypto/sha256/sha256_test.go
  3. 6
      pkg/utils/crypto/sha512/sha512_test.go

@ -109,7 +109,7 @@ func TestBlockGeneric(t *testing.T) {
}
var bench = New()
var buf = make([]byte, 8192)
var buf = make([]byte, 1024*1024)
func benchmarkSize(b *testing.B, size int) {
b.SetBytes(int64(size))
@ -132,3 +132,7 @@ func BenchmarkHash1K(b *testing.B) {
func BenchmarkHash8K(b *testing.B) {
benchmarkSize(b, 8192)
}
func BenchmarkHash1M(b *testing.B) {
benchmarkSize(b, 1024*1024)
}

@ -96,7 +96,7 @@ func TestBlockSize(t *testing.T) {
}
var bench = New()
var buf = make([]byte, 8192)
var buf = make([]byte, 1024*1024)
func benchmarkSize(b *testing.B, size int) {
b.SetBytes(int64(size))
@ -119,3 +119,7 @@ func BenchmarkHash1K(b *testing.B) {
func BenchmarkHash8K(b *testing.B) {
benchmarkSize(b, 8192)
}
func BenchmarkHash1M(b *testing.B) {
benchmarkSize(b, 1024*1024)
}

@ -96,7 +96,7 @@ func TestBlockSize(t *testing.T) {
}
var bench = New()
var buf = make([]byte, 8192)
var buf = make([]byte, 1024*1024)
func benchmarkSize(b *testing.B, size int) {
b.SetBytes(int64(size))
@ -119,3 +119,7 @@ func BenchmarkHash1K(b *testing.B) {
func BenchmarkHash8K(b *testing.B) {
benchmarkSize(b, 8192)
}
func BenchmarkHash1M(b *testing.B) {
benchmarkSize(b, 1024*1024)
}

Loading…
Cancel
Save