Lines Matching defs:out
78 out []byte
122 t.out("Building packages and commands.")
692 func (t *tester) out(v string) {
933 w.out = []byte(fmt.Sprintf("skipped due to earlier error\n"))
935 w.out, w.err = w.cmd.CombinedOutput()
955 t.out(dt.heading)
970 os.Stdout.Write(w.out)
983 t.out(dt.heading)
1097 // TODO(iant): Figure out how to catch this.
1145 // variables with the same name in "in" replace those in "out".
1146 // out may be mutated.
1147 func mergeEnvLists(in, out []string) []string {
1151 for i, outkv := range out {
1153 out[i] = inkv
1157 out = append(out, inkv)
1159 return out