Skip to content

Commit a069eec

Browse files
committed
Added cadvisor test suite to flag info message
The cadvisor test suite is not mentioned in the remote runner's `--test-suite` flag. This PR will mention the existence of the cadvisor test suite.
1 parent 695cd49 commit a069eec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e_node/runner/remote/run_remote.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import (
4848
)
4949

5050
var testArgs = flag.String("test_args", "", "Space-separated list of arguments to pass to Ginkgo test runner.")
51-
var testSuite = flag.String("test-suite", "default", "Test suite the runner initializes with. Currently support default|conformance")
51+
var testSuite = flag.String("test-suite", "default", "Test suite the runner initializes with. Currently support default|cadvisor|conformance")
5252
var instanceNamePrefix = flag.String("instance-name-prefix", "", "prefix for instance names")
5353
var zone = flag.String("zone", "", "gce zone the hosts live in")
5454
var project = flag.String("project", "", "gce project the hosts live in")
@@ -196,7 +196,7 @@ func main() {
196196
// Use node e2e suite by default if no subcommand is specified.
197197
suite = remote.InitNodeE2ERemote()
198198
default:
199-
klog.Fatalf("--test-suite must be one of default or conformance")
199+
klog.Fatalf("--test-suite must be one of default, cadvisor, or conformance")
200200
}
201201

202202
rand.Seed(time.Now().UnixNano())

0 commit comments

Comments
 (0)