]> Cypherpunks.ru repositories - gostls13.git/blobdiff - misc/cgo/testshared/shared_test.go
test: skip -buildmode=pie tests on alpine
[gostls13.git] / misc / cgo / testshared / shared_test.go
index 634d7556a8f9d8073adcf6fd23f1677616b401bd..92c2166674f40b52915be19ec41a91e400494355 100644 (file)
@@ -528,6 +528,9 @@ func checkPIE(t *testing.T, name string) {
 }
 
 func TestTrivialPIE(t *testing.T) {
+       if strings.HasSuffix(os.Getenv("GO_BUILDER_NAME"), "-alpine") {
+               t.Skip("skipping on alpine until issue #54354 resolved")
+       }
        name := "trivial_pie"
        goCmd(t, "build", "-buildmode=pie", "-o="+name, "./trivial")
        defer os.Remove(name)