-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsc_test.go
56 lines (47 loc) · 1006 Bytes
/
tsc_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2016 David Terei. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
// +build amd64
package gotsc
import (
"testing"
"time"
)
const (
TSC_LOW = 10
TSC_HIGH = 200
)
func TestTSCOverhead(t *testing.T) {
tsc := TSCOverhead()
if tsc < 10 || tsc > 100 {
t.Errorf("TSC Overhead returned number outside expected range: %d\n", tsc)
}
}
func TestBench(t *testing.T) {
tsc := TSCOverhead()
start := BenchStart()
end := BenchEnd()
delta := end - start - tsc
if start > end {
t.Error("BenchEnd() earlier than BenchStart()")
} else if delta > TSC_HIGH {
t.Errorf("BenchEnd() - BenchStart() far greater than TSC overhead: %d\n",
delta)
}
}
func BenchmarkTime(b *testing.B) {
for i := 0; i < b.N; i++ {
time.Now()
}
}
func BenchmarkBenchStart(b *testing.B) {
for i := 0; i < b.N; i++ {
BenchStart()
}
}
func BenchmarkBenchEnd(b *testing.B) {
for i := 0; i < b.N; i++ {
BenchEnd()
}
}