Skip to content

Commit

Permalink
runtime: skip TestGdbBacktrace on netbsd
Browse files Browse the repository at this point in the history
Also adds missing copyright notice.

Updates #15603.

Change-Id: Icf4bb45ba5edec891491fe5f0039a8a25125d168
Reviewed-on: https://go-review.googlesource.com/23501
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
  • Loading branch information
cixtor committed May 27, 2016
1 parent 6a86dbe commit c340f48
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/runtime/runtime-gdb_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2015 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.

package runtime_test

import (
Expand Down Expand Up @@ -207,6 +211,10 @@ func TestGdbBacktrace(t *testing.T) {
checkGdbEnvironment(t)
checkGdbVersion(t)

if runtime.GOOS == "netbsd" {
testenv.SkipFlaky(t, 15603)
}

dir, err := ioutil.TempDir("", "go-build")
if err != nil {
t.Fatalf("failed to create temp directory: %v", err)
Expand Down

0 comments on commit c340f48

Please sign in to comment.