/usr/share/go-1.6/test/stress/runstress.go is in golang-1.6-src 1.6.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | // Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The runstress tool stresses the runtime.
//
// It runs forever and should never fail. It tries to stress the garbage collector,
// maps, channels, the network, and everything else provided by the runtime.
package main
import (
"flag"
"fmt"
"io"
"io/ioutil"
"log"
"math/rand"
"net"
"net/http"
"net/http/httptest"
"os/exec"
"strconv"
"time"
)
var (
v = flag.Bool("v", false, "verbose")
doMaps = flag.Bool("maps", true, "stress maps")
doExec = flag.Bool("exec", true, "stress exec")
doChan = flag.Bool("chan", true, "stress channels")
doNet = flag.Bool("net", true, "stress networking")
doParseGo = flag.Bool("parsego", true, "stress parsing Go (generates garbage)")
)
func Println(a ...interface{}) {
if *v {
log.Println(a...)
}
}
func dialStress(a net.Addr) {
for {
d := net.Dialer{Timeout: time.Duration(rand.Intn(1e9))}
c, err := d.Dial("tcp", a.String())
if err == nil {
Println("did dial")
go func() {
time.Sleep(time.Duration(rand.Intn(500)) * time.Millisecond)
c.Close()
Println("closed dial")
}()
}
// Don't run out of ephermeral ports too quickly:
time.Sleep(250 * time.Millisecond)
}
}
func stressNet() {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
size, _ := strconv.Atoi(r.FormValue("size"))
w.Write(make([]byte, size))
}))
go dialStress(ts.Listener.Addr())
for {
size := rand.Intn(128 << 10)
res, err := http.Get(fmt.Sprintf("%s/?size=%d", ts.URL, size))
if err != nil {
log.Fatalf("stressNet: http Get error: %v", err)
}
if res.StatusCode != 200 {
log.Fatalf("stressNet: Status code = %d", res.StatusCode)
}
n, err := io.Copy(ioutil.Discard, res.Body)
if err != nil {
log.Fatalf("stressNet: io.Copy: %v", err)
}
if n != int64(size) {
log.Fatalf("stressNet: copied = %d; want %d", n, size)
}
res.Body.Close()
Println("did http", size)
}
}
func doAnExec() {
exit := rand.Intn(2)
wantOutput := fmt.Sprintf("output-%d", rand.Intn(1e9))
cmd := exec.Command("/bin/sh", "-c", fmt.Sprintf("echo %s; exit %d", wantOutput, exit))
out, err := cmd.CombinedOutput()
if exit == 1 {
if err == nil {
log.Fatal("stressExec: unexpected exec success")
}
return
}
if err != nil {
log.Fatalf("stressExec: exec failure: %v: %s", err, out)
}
wantOutput += "\n"
if string(out) != wantOutput {
log.Fatalf("stressExec: exec output = %q; want %q", out, wantOutput)
}
Println("did exec")
}
func stressExec() {
gate := make(chan bool, 10) // max execs at once
for {
gate <- true
go func() {
doAnExec()
<-gate
}()
}
}
func ringf(in <-chan int, out chan<- int, donec chan bool) {
for {
var n int
select {
case <-donec:
return
case n = <-in:
}
if n == 0 {
close(donec)
return
}
out <- n - 1
}
}
func threadRing(bufsize int) {
const N = 100
donec := make(chan bool)
one := make(chan int, bufsize) // will be input to thread 1
var in, out chan int = nil, one
for i := 1; i <= N-1; i++ {
in, out = out, make(chan int, bufsize)
go ringf(in, out, donec)
}
go ringf(out, one, donec)
one <- N
<-donec
Println("did threadring of", bufsize)
}
func stressChannels() {
for {
threadRing(0)
threadRing(1)
}
}
func main() {
flag.Parse()
for want, f := range map[*bool]func(){
doMaps: stressMaps,
doNet: stressNet,
doExec: stressExec,
doChan: stressChannels,
doParseGo: stressParseGo,
} {
if *want {
go f()
}
}
select {}
}
|