aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps
diff options
context:
space:
mode:
authorGravatar Bill Feng <yfen@google.com>2018-09-06 13:41:02 -0700
committerGravatar Bill Feng <yfen@google.com>2018-09-06 13:41:02 -0700
commit3fb62ae92c1154b3bae0104a7eaea4520ac3cfa2 (patch)
treedae01d6587dee63c789b3e9bbd43c79ab5a1ae47 /test/cpp/qps
parent888ffabd80b5597a139f1c280d8c82c5ac2124f5 (diff)
exclude less tests from qps
Diffstat (limited to 'test/cpp/qps')
-rw-r--r--test/cpp/qps/qps_benchmark_script.bzl10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/cpp/qps/qps_benchmark_script.bzl b/test/cpp/qps/qps_benchmark_script.bzl
index 0904ceb036..2435502c85 100644
--- a/test/cpp/qps/qps_benchmark_script.bzl
+++ b/test/cpp/qps/qps_benchmark_script.bzl
@@ -32,7 +32,7 @@ load("//test/cpp/qps:json_run_localhost_scenarios.bzl", "JSON_RUN_LOCALHOST_SCEN
def qps_json_driver_batch():
for scenario in QPS_JSON_DRIVER_SCENARIOS:
grpc_cc_test(
- name = "qps_json_driver_test_%s" % scenario,
+ name = "qps_json_driver_test/%s" % scenario,
srcs = ["qps_json_driver.cc"],
args = [
"--run_inproc",
@@ -49,12 +49,15 @@ def qps_json_driver_batch():
"//test/cpp/util:test_config",
"//test/cpp/util:test_util",
],
+ tags = [
+ "qps_json_driver",
+ ],
)
def json_run_localhost_batch():
for scenario in JSON_RUN_LOCALHOST_SCENARIOS:
grpc_cc_test(
- name = "json_run_localhost_%s" % scenario,
+ name = "json_run_localhost/%s" % scenario,
srcs = ["json_run_localhost.cc"],
args = [
"--scenarios_json",
@@ -71,4 +74,7 @@ def json_run_localhost_batch():
"//test/cpp/util:test_config",
"//test/cpp/util:test_util",
],
+ tags = [
+ "json_run_localhost",
+ ],
)