(_ *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestExecHelper(_ *testing.T) { |
| 12 | if !WantHelperProcess() { |
| 13 | return |
| 14 | } |
| 15 | |
| 16 | if os.Getenv("PASS") != "1" { |
| 17 | fmt.Fprintln(os.Stdout, "tests failed") |
| 18 | os.Exit(1) |
| 19 | } |
| 20 | |
| 21 | fmt.Fprintln(os.Stdout, "tests succeed") |
| 22 | } |
| 23 | |
| 24 | func TestExec(t *testing.T) { |
| 25 | tests := []struct { |
nothing calls this directly
no test coverage detected