diff options
author | Brad Fitzpatrick <bradfitz@golang.org> | 2018-10-04 17:06:21 +0000 |
---|---|---|
committer | Brad Fitzpatrick <bradfitz@golang.org> | 2018-10-04 17:50:01 +0000 |
commit | 6d73537128ad7ff35ba1dbc55fc2837b0989b6b2 (patch) | |
tree | 6d79a5b46c029e73a7f8c875148cf8e981700bb8 /src/debug | |
parent | 47e71f3b6917113660a65a180e66c91fc6318458 (diff) | |
download | go-git-6d73537128ad7ff35ba1dbc55fc2837b0989b6b2.tar.gz |
debug/pe: skip a test on windows/arm
It requires a DLL that's not available on windows/arm apparently.
Fixes #27904
Change-Id: I082a273f62976b7184636c6aeca6201a7871d238
Reviewed-on: https://go-review.googlesource.com/c/139720
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: Katie Hockman <katie@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/debug')
-rw-r--r-- | src/debug/pe/file_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/debug/pe/file_test.go b/src/debug/pe/file_test.go index 24cd673254..c65c82d342 100644 --- a/src/debug/pe/file_test.go +++ b/src/debug/pe/file_test.go @@ -535,7 +535,11 @@ func TestBuildingWindowsGUI(t *testing.T) { func TestImportTableInUnknownSection(t *testing.T) { if runtime.GOOS != "windows" { - t.Skip("skipping windows only test") + t.Skip("skipping Windows-only test") + } + if runtime.GOARCH == "arm" { + // Issue 27904 + t.Skip("skipping test on arm; no atmfd.dll available") } // first we need to find this font driver |