Lines Matching +full:alpine +full:- +full:build +full:- +full:testing
1 runtime, crypto/x509: add -target flag.
3 --- src/crypto/x509/x509_test.go
5 @@ -13,29 +13,32 @@ import (
24 "testing"
30 func TestParsePKCS1PrivateKey(t *testing.T) {
38 @@ -1089,17 +1092,23 @@ func TestParsePEMCRL(t *testing.T) {
44 func TestImports(t *testing.T) {
47 - if err := exec.Command(testenv.GoToolPath(t), "run", "x509_test_import.go").Run(); err != nil {
52 + cmd = exec.Command("go_"+*target, "run", "-exec", "go_"+*target+"_exec", "x509_test_import.go")
63 --- src/runtime/crash_cgo_test.go
65 @@ -279,17 +279,17 @@ func testCgoPprof(t *testing.T, buildArg, runArg string) {
74 - got, err := testenv.CleanCmdEnv(exec.Command(exe, runArg)).CombinedOutput()
77 if testenv.Builder() == "linux-amd64-alpine" {
79 t.Skipf("Skipping failing test on Alpine (golang.org/issue/18243). Ignoring error: %v", err)
84 --- src/runtime/crash_test.go
86 @@ -17,16 +17,35 @@ import (
91 "testing"
97 +func goCmd(t *testing.T) string {
116 func TestMain(m *testing.M) {
122 @@ -50,17 +69,17 @@ func runTestProg(t *testing.T, binary, name string, env ...string) string {
131 - cmd := testenv.CleanCmdEnv(exec.Command(exe, name))
134 if testing.Short() {
141 @@ -125,17 +144,17 @@ func buildTestProg(t *testing.T, binary string, flags ...string) (string, err…
150 - cmd := exec.Command(testenv.GoToolPath(t), append([]string{"build", "-o", exe}, flags...)...)
151 + cmd := exec.Command(goCmd(t), append([]string{"build", "-o", exe}, flags...)...)
160 @@ -456,17 +475,17 @@ func TestPanicLoop(t *testing.T) {
161 func TestMemPprof(t *testing.T) {
169 - got, err := testenv.CleanCmdEnv(exec.Command(exe, "MemProf")).CombinedOutput()
178 …= testenv.CleanCmdEnv(exec.Command(testenv.GoToolPath(t), "tool", "pprof", "-alloc_space", "-top"))
179 --- src/runtime/crash_unix_test.go
181 @@ -244,17 +244,17 @@ func testPanicSystemstackInternal() {
184 func TestSignalExitStatus(t *testing.T) {
190 - err = testenv.CleanCmdEnv(exec.Command(exe, "SignalExitStatus")).Run()