mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 09:42:19 +00:00
1cf6747d06
Former-commit-id: 6a2a7c34e451465eae5d78f76e310e36a412d848 [formerly 6294fcfb3a206061cc8f9309f945f9b0c5a332a2] Former-commit-id: e2d352442cc4b45620454ac6ece0f8d3d564ed11
49 lines
849 B
Go
49 lines
849 B
Go
package metrics
|
|
|
|
import (
|
|
"runtime"
|
|
"runtime/debug"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func BenchmarkDebugGCStats(b *testing.B) {
|
|
r := NewRegistry()
|
|
RegisterDebugGCStats(r)
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
CaptureDebugGCStatsOnce(r)
|
|
}
|
|
}
|
|
|
|
func TestDebugGCStatsBlocking(t *testing.T) {
|
|
if g := runtime.GOMAXPROCS(0); g < 2 {
|
|
t.Skipf("skipping TestDebugGCMemStatsBlocking with GOMAXPROCS=%d\n", g)
|
|
return
|
|
}
|
|
ch := make(chan int)
|
|
go testDebugGCStatsBlocking(ch)
|
|
var gcStats debug.GCStats
|
|
t0 := time.Now()
|
|
debug.ReadGCStats(&gcStats)
|
|
t1 := time.Now()
|
|
t.Log("i++ during debug.ReadGCStats:", <-ch)
|
|
go testDebugGCStatsBlocking(ch)
|
|
d := t1.Sub(t0)
|
|
t.Log(d)
|
|
time.Sleep(d)
|
|
t.Log("i++ during time.Sleep:", <-ch)
|
|
}
|
|
|
|
func testDebugGCStatsBlocking(ch chan int) {
|
|
i := 0
|
|
for {
|
|
select {
|
|
case ch <- i:
|
|
return
|
|
default:
|
|
i++
|
|
}
|
|
}
|
|
}
|