blob: 62dfb72bf9a966e90333c5669e813d06f5231123 [file] [log] [blame]
Russ Coxd2cc9882012-02-16 23:50:37 -05001// run
Russ Coxd1bafff2011-10-13 15:54:23 -04002
3// Copyright 2011 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// Test that goroutines and garbage collection run during init.
8
9package main
10
11import "runtime"
12
13var x []byte
14
15func init() {
16 c := make(chan int)
17 go send(c)
18 <-c
Rémy Oudompheng842c9062012-02-06 19:16:26 +010019
Brad Fitzpatrickb5b11bd2015-02-13 08:06:36 -080020 const N = 1000
21 const MB = 1 << 20
22 b := make([]byte, MB)
Russ Coxd1bafff2011-10-13 15:54:23 -040023 for i := range b {
24 b[i] = byte(i%10 + '0')
25 }
26 s := string(b)
Brad Fitzpatrickb5b11bd2015-02-13 08:06:36 -080027
28 memstats := new(runtime.MemStats)
29 runtime.ReadMemStats(memstats)
30 sys, numGC := memstats.Sys, memstats.NumGC
31
32 // Generate 1,000 MB of garbage, only retaining 1 MB total.
33 for i := 0; i < N; i++ {
Russ Coxd1bafff2011-10-13 15:54:23 -040034 x = []byte(s)
35 }
Brad Fitzpatrickb5b11bd2015-02-13 08:06:36 -080036
37 // Verify that the garbage collector ran by seeing if we
38 // allocated fewer than N*MB bytes from the system.
Rémy Oudompheng842c9062012-02-06 19:16:26 +010039 runtime.ReadMemStats(memstats)
Brad Fitzpatrickb5b11bd2015-02-13 08:06:36 -080040 sys1, numGC1 := memstats.Sys, memstats.NumGC
41 if sys1-sys >= N*MB || numGC1 == numGC {
42 println("allocated 1000 chunks of", MB, "and used ", sys1-sys, "memory")
43 println("numGC went", numGC, "to", numGC)
Alan Donovan052c9422013-02-12 13:17:49 -050044 panic("init1")
Russ Coxd1bafff2011-10-13 15:54:23 -040045 }
46}
47
48func send(c chan int) {
49 c <- 1
50}
51
52func main() {
53}