aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps
diff options
context:
space:
mode:
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",
+ ],
)