Skip to content

Commit bb4333f

Browse files
committed
builder_test: add arm float tests
Signed-off-by: Marvin Drees <marvin.drees@9elements.com>
1 parent fa73245 commit bb4333f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

builder/builder_test.go

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,12 @@ func TestClangAttributes(t *testing.T) {
5252
for _, options := range []*compileopts.Options{
5353
{GOOS: "linux", GOARCH: "386"},
5454
{GOOS: "linux", GOARCH: "amd64"},
55-
{GOOS: "linux", GOARCH: "arm", GOARM: "5"},
56-
{GOOS: "linux", GOARCH: "arm", GOARM: "6"},
57-
{GOOS: "linux", GOARCH: "arm", GOARM: "7"},
55+
{GOOS: "linux", GOARCH: "arm", GOARM: "5,softfloat"},
56+
{GOOS: "linux", GOARCH: "arm", GOARM: "6,softfloat"},
57+
{GOOS: "linux", GOARCH: "arm", GOARM: "7,softfloat"},
58+
{GOOS: "linux", GOARCH: "arm", GOARM: "5,hardfloat"},
59+
{GOOS: "linux", GOARCH: "arm", GOARM: "6,hardfloat"},
60+
{GOOS: "linux", GOARCH: "arm", GOARM: "7,hardfloat"},
5861
{GOOS: "linux", GOARCH: "arm64"},
5962
{GOOS: "darwin", GOARCH: "amd64"},
6063
{GOOS: "darwin", GOARCH: "arm64"},

0 commit comments

Comments
 (0)