mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
runtime: skip broken TestRuntimeGogoBytes on windows
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/43730043
This commit is contained in:
parent
c86fc68ac6
commit
ae9e4db07c
1 changed files with 4 additions and 0 deletions
|
|
@ -93,6 +93,10 @@ func BenchmarkDeferMany(b *testing.B) {
|
||||||
// The value reported will include the padding between runtime.gogo and the
|
// The value reported will include the padding between runtime.gogo and the
|
||||||
// next function in memory. That's fine.
|
// next function in memory. That's fine.
|
||||||
func TestRuntimeGogoBytes(t *testing.T) {
|
func TestRuntimeGogoBytes(t *testing.T) {
|
||||||
|
// TODO(brainman): delete when issue 6973 is fixed.
|
||||||
|
if GOOS == "windows" {
|
||||||
|
t.Skip("skipping broken test on windows")
|
||||||
|
}
|
||||||
dir, err := ioutil.TempDir("", "go-build")
|
dir, err := ioutil.TempDir("", "go-build")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("failed to create temp directory: %v", err)
|
t.Fatalf("failed to create temp directory: %v", err)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue