Merge pull request #89139 from chendave/flags

Respect flags of testing package
This commit is contained in:
Kubernetes Prow Robot 2020-03-18 22:24:48 -07:00 committed by GitHub
commit 1aa64b25a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,11 +17,13 @@ limitations under the License.
package benchmark
import (
"flag"
"testing"
"k8s.io/kubernetes/test/integration/framework"
)
func TestMain(m *testing.M) {
flag.Parse()
framework.EtcdMain(m.Run)
}