Merge pull request #22355 from jtattermusch/bm_metadata_not_flaky

bm_metadata is not flaky anymore
pull/22364/head
Jan Tattermusch 5 years ago committed by GitHub
commit 880111fe47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Makefile
  2. 1
      build_autogenerated.yaml
  3. 1
      test/cpp/microbenchmarks/BUILD
  4. 20
      tools/run_tests/generated/tests.json

@ -2186,6 +2186,8 @@ test_cxx: buildtests_cxx
$(Q) $(BINDIR)/$(CONFIG)/bm_fullstack_streaming_ping_pong || ( echo test bm_fullstack_streaming_ping_pong failed ; exit 1 ) $(Q) $(BINDIR)/$(CONFIG)/bm_fullstack_streaming_ping_pong || ( echo test bm_fullstack_streaming_ping_pong failed ; exit 1 )
$(E) "[RUN] Testing bm_fullstack_unary_ping_pong" $(E) "[RUN] Testing bm_fullstack_unary_ping_pong"
$(Q) $(BINDIR)/$(CONFIG)/bm_fullstack_unary_ping_pong || ( echo test bm_fullstack_unary_ping_pong failed ; exit 1 ) $(Q) $(BINDIR)/$(CONFIG)/bm_fullstack_unary_ping_pong || ( echo test bm_fullstack_unary_ping_pong failed ; exit 1 )
$(E) "[RUN] Testing bm_metadata"
$(Q) $(BINDIR)/$(CONFIG)/bm_metadata || ( echo test bm_metadata failed ; exit 1 )
$(E) "[RUN] Testing bm_pollset" $(E) "[RUN] Testing bm_pollset"
$(Q) $(BINDIR)/$(CONFIG)/bm_pollset || ( echo test bm_pollset failed ; exit 1 ) $(Q) $(BINDIR)/$(CONFIG)/bm_pollset || ( echo test bm_pollset failed ; exit 1 )
$(E) "[RUN] Testing bm_timer" $(E) "[RUN] Testing bm_timer"

@ -5196,7 +5196,6 @@ targets:
- posix - posix
- name: bm_metadata - name: bm_metadata
build: test build: test
run: false
language: c++ language: c++
headers: [] headers: []
src: src:

@ -250,7 +250,6 @@ grpc_cc_test(
grpc_cc_test( grpc_cc_test(
name = "bm_metadata", name = "bm_metadata",
srcs = ["bm_metadata.cc"], srcs = ["bm_metadata.cc"],
flaky = True, # TODO(b/149998903)
tags = [ tags = [
"no_mac", "no_mac",
"no_windows", "no_windows",

@ -3849,6 +3849,26 @@
], ],
"uses_polling": true "uses_polling": true
}, },
{
"args": [],
"benchmark": true,
"ci_platforms": [
"linux",
"posix"
],
"cpu_cost": 1.0,
"exclude_configs": [],
"exclude_iomgrs": [],
"flaky": false,
"gtest": false,
"language": "c++",
"name": "bm_metadata",
"platforms": [
"linux",
"posix"
],
"uses_polling": false
},
{ {
"args": [], "args": [],
"benchmark": true, "benchmark": true,

Loading…
Cancel
Save