]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip broken TestRuntimeGogoBytes on windows
authorAlex Brainman <alex.brainman@gmail.com>
Wed, 18 Dec 2013 03:17:47 +0000 (14:17 +1100)
committerAlex Brainman <alex.brainman@gmail.com>
Wed, 18 Dec 2013 03:17:47 +0000 (14:17 +1100)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/43730043

src/pkg/runtime/runtime_test.go

index 238b70572fa6f158414f99a69fd7122e734eefac..f6b48ba3a6d4d74c766790e8ef7a7fcd37e6dfb3 100644 (file)
@@ -93,6 +93,10 @@ func BenchmarkDeferMany(b *testing.B) {
 // The value reported will include the padding between runtime.gogo and the
 // next function in memory. That's fine.
 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")
        if err != nil {
                t.Fatalf("failed to create temp directory: %v", err)