Skip to content

Commit

Permalink
cmd/nm: report windows/arm as relocatable in TestGoExec
Browse files Browse the repository at this point in the history
Updates #26148

Change-Id: I704efafca39e4397caf2db0146d83d309c761dd1
Reviewed-on: https://go-review.googlesource.com/c/154357
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
  • Loading branch information
jordanrh1 authored and bradfitz committed Dec 15, 2018
1 parent 281ce28 commit 26985ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cmd/nm/nm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@ func testGoExec(t *testing.T, iscgo, isexternallinker bool) {
return true
}
}
if runtime.GOOS == "windows" && runtime.GOARCH == "arm" {
return true
}
return false
}

Expand Down

0 comments on commit 26985ed

Please sign in to comment.