Skip to content

Commit 6d73537

Browse files
committed
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 <[email protected]> Reviewed-by: Katie Hockman <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent 47e71f3 commit 6d73537

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/debug/pe/file_test.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,11 @@ func TestBuildingWindowsGUI(t *testing.T) {
535535

536536
func TestImportTableInUnknownSection(t *testing.T) {
537537
if runtime.GOOS != "windows" {
538-
t.Skip("skipping windows only test")
538+
t.Skip("skipping Windows-only test")
539+
}
540+
if runtime.GOARCH == "arm" {
541+
// Issue 27904
542+
t.Skip("skipping test on arm; no atmfd.dll available")
539543
}
540544

541545
// first we need to find this font driver

0 commit comments

Comments
 (0)