runtime/pprof: fix arm build after CL 61270043

TBR=dvyukov
CC=golang-codereviews
https://golang.org/cl/62960043
This commit is contained in:
Russ Cox 2014-02-13 01:16:20 -05:00
parent 673917f878
commit 39067c79f3

View file

@ -218,7 +218,7 @@ func TestGoroutineSwitch(t *testing.T) {
// exists to record a PC without a traceback. Those are okay.
if len(stk) == 2 {
f := runtime.FuncForPC(stk[1])
if f != nil && f.Name() == "System" {
if f != nil && (f.Name() == "System" || f.Name() == "ExternalCode") {
return
}
}