Remove runtime-dependent test.

Success of this test was runtime dependent and did not validate
the implementation logic itself.
This commit is contained in:
Fabian Reinartz 2015-08-13 18:03:15 +02:00
parent dd33f764bd
commit 89773a6194
1 changed files with 0 additions and 20 deletions

View File

@ -14,7 +14,6 @@
package model
import (
"runtime"
"sync"
"testing"
)
@ -247,25 +246,6 @@ func BenchmarkMetricToFastFingerprintTriple(b *testing.B) {
benchmarkMetricToFastFingerprint(b, Metric{"first-label": "first-label-value", "second-label": "second-label-value", "third-label": "third-label-value"}, 15738406913934009676)
}
func TestEmptyLabelSignature(t *testing.T) {
input := []map[string]string{nil, {}}
var ms runtime.MemStats
runtime.ReadMemStats(&ms)
alloc := ms.Alloc
for _, labels := range input {
LabelsToSignature(labels)
}
runtime.ReadMemStats(&ms)
if got := ms.Alloc; alloc != got {
t.Fatal("expected LabelsToSignature with empty labels not to perform allocations")
}
}
func benchmarkMetricToFastFingerprintConc(b *testing.B, m Metric, e Fingerprint, concLevel int) {
var start, end sync.WaitGroup
start.Add(1)