diff options
| author | Yao Zhang <lunaria21@gmail.com> | 2015-09-23 18:58:05 -0400 |
|---|---|---|
| committer | Minux Ma <minux@golang.org> | 2015-11-12 04:47:42 +0000 |
| commit | c1037aad4d10078b536625683364dcceed6c4e21 (patch) | |
| tree | 0d615e48f982a00c512de2e297ae81b03bcc7dd4 /src/runtime/runtime-gdb_test.go | |
| parent | 15b51d6ae693fa5898bdeae587482a2dac59a1d0 (diff) | |
| download | go-c1037aad4d10078b536625683364dcceed6c4e21.tar.xz | |
runtime: added mips64{,le} build tags and GOARCH cases
Change-Id: I381c03d957a0dccae5f655f02e92760e5c0e9629
Reviewed-on: https://go-review.googlesource.com/14929
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Minux Ma <minux@golang.org>
Diffstat (limited to 'src/runtime/runtime-gdb_test.go')
| -rw-r--r-- | src/runtime/runtime-gdb_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go index 2843633ee1..3c045713af 100644 --- a/src/runtime/runtime-gdb_test.go +++ b/src/runtime/runtime-gdb_test.go @@ -103,7 +103,7 @@ func TestGdbPython(t *testing.T) { // stack frames on RISC architectures. canBackTrace := false switch runtime.GOARCH { - case "amd64", "386", "ppc64", "ppc64le", "arm", "arm64": + case "amd64", "386", "ppc64", "ppc64le", "arm", "arm64", "mips64", "mips64le": canBackTrace = true args = append(args, "-ex", "echo BEGIN goroutine 2 bt\n", |
