diff --git a/.buildkite/pipeline_lib.sh b/.buildkite/pipeline_lib.sh index 1975c40b3d..996468d6a2 100644 --- a/.buildkite/pipeline_lib.sh +++ b/.buildkite/pipeline_lib.sh @@ -12,7 +12,7 @@ gen_bazel_test_steps() { name=${test#//} cache="" # Tell the test that it is being used for CI testing. That may trigger additional checks. - args="--test_arg=-ci" + args="--test_arg=--ci" if [[ "$test" =~ "go" ]]; then args="$args --test_arg=-test.v" diff --git a/acceptance/router_benchmark/test.py b/acceptance/router_benchmark/test.py index 8756d2ee0b..dbea3285f8 100755 --- a/acceptance/router_benchmark/test.py +++ b/acceptance/router_benchmark/test.py @@ -36,12 +36,13 @@ # Those values are valid expectations only when running in the CI environment. EXPECTATIONS = { 'in': 29000, - 'out':19000, + 'out': 19000, 'in_transit': 40000, 'out_transit': 34000, 'br_transit': 50000, } + class Test(base.TestTopogen): """ Tests that the performance of the router is within a satisfying (TBD) range.