(t *testing.T, args ...string)
| 564 | } |
| 565 | |
| 566 | func mustRunCommand(t *testing.T, args ...string) string { |
| 567 | t.Helper() |
| 568 | return command{}.mustRun(t, args...) |
| 569 | } |
| 570 | |
| 571 | // race is an approximation of whether the race detector is on. |
| 572 | // It's used to skip the integration test on builders, without |
no test coverage detected