| // Copyright 2009 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. |
| func TestCaller(t *testing.T) { |
| procs := runtime.GOMAXPROCS(-1) |
| c := make(chan bool, procs) |
| for p := 0; p < procs; p++ { |
| for i := 0; i < 1000; i++ { |
| func testCallerFoo(t *testing.T) { |
| func testCallerBar(t *testing.T) { |
| pc, file, line, ok := runtime.Caller(i) |
| f := runtime.FuncForPC(pc) |
| !strings.HasSuffix(file, "symtab_test.go") || |
| (i == 0 && !strings.HasSuffix(f.Name(), "testCallerBar")) || |
| (i == 1 && !strings.HasSuffix(f.Name(), "testCallerFoo")) || |
| line < 5 || line > 1000 || |
| t.Errorf("incorrect symbol info %d: %t %d %d %s %s %d", |
| i, ok, f.Entry(), pc, f.Name(), file, line) |