Russ Cox | d2cc988 | 2012-02-16 23:50:37 -0500 | [diff] [blame] | 1 | // run |
Russ Cox | d1bafff | 2011-10-13 15:54:23 -0400 | [diff] [blame] | 2 | |
| 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 | |
| 9 | package main |
| 10 | |
| 11 | import "runtime" |
| 12 | |
| 13 | var x []byte |
| 14 | |
| 15 | func init() { |
| 16 | c := make(chan int) |
| 17 | go send(c) |
| 18 | <-c |
Rémy Oudompheng | 842c906 | 2012-02-06 19:16:26 +0100 | [diff] [blame] | 19 | |
Brad Fitzpatrick | b5b11bd | 2015-02-13 08:06:36 -0800 | [diff] [blame] | 20 | const N = 1000 |
| 21 | const MB = 1 << 20 |
| 22 | b := make([]byte, MB) |
Russ Cox | d1bafff | 2011-10-13 15:54:23 -0400 | [diff] [blame] | 23 | for i := range b { |
| 24 | b[i] = byte(i%10 + '0') |
| 25 | } |
| 26 | s := string(b) |
Brad Fitzpatrick | b5b11bd | 2015-02-13 08:06:36 -0800 | [diff] [blame] | 27 | |
| 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 Cox | d1bafff | 2011-10-13 15:54:23 -0400 | [diff] [blame] | 34 | x = []byte(s) |
| 35 | } |
Brad Fitzpatrick | b5b11bd | 2015-02-13 08:06:36 -0800 | [diff] [blame] | 36 | |
| 37 | // Verify that the garbage collector ran by seeing if we |
| 38 | // allocated fewer than N*MB bytes from the system. |
Rémy Oudompheng | 842c906 | 2012-02-06 19:16:26 +0100 | [diff] [blame] | 39 | runtime.ReadMemStats(memstats) |
Brad Fitzpatrick | b5b11bd | 2015-02-13 08:06:36 -0800 | [diff] [blame] | 40 | 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 Donovan | 052c942 | 2013-02-12 13:17:49 -0500 | [diff] [blame] | 44 | panic("init1") |
Russ Cox | d1bafff | 2011-10-13 15:54:23 -0400 | [diff] [blame] | 45 | } |
| 46 | } |
| 47 | |
| 48 | func send(c chan int) { |
| 49 | c <- 1 |
| 50 | } |
| 51 | |
| 52 | func main() { |
| 53 | } |