Merge pull request #22657 from markdroth/disable_client_channel_stress_test

Mark client_channel_stress_test as manual so that it doesn't run on every PR.
pull/22659/head
Jan Tattermusch 5 years ago committed by GitHub
commit f198dc79b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      test/cpp/client/BUILD

@ -35,18 +35,16 @@ grpc_cc_test(
grpc_cc_test( grpc_cc_test(
name = "client_channel_stress_test", name = "client_channel_stress_test",
srcs = ["client_channel_stress_test.cc"], srcs = ["client_channel_stress_test.cc"],
flaky = True, # TODO(b/153136407)
# TODO(jtattermusch): test fails frequently on Win RBE, but passes locally # TODO(jtattermusch): test fails frequently on Win RBE, but passes locally
# reenable the tests once it works reliably on Win RBE. # reenable the tests once it works reliably on Win RBE.
# TODO(roth): Test disabled on msan and tsan due to variable # TODO(roth): Test marked as manual for now due to variable duration
# duration problem triggered by https://github.com/grpc/grpc/pull/22481. # problem triggered by https://github.com/grpc/grpc/pull/22481.
# Re-enable once the problem is diagnosed and fixed. Tracked # Once we figure out the problem, either re-enable or just decide to
# internally in b/153136407. # remove this test. Tracked internally in b/153136407.
tags = [ tags = [
"manual",
"no_test_android", # fails on android due to "Too many open files". "no_test_android", # fails on android due to "Too many open files".
"no_windows", "no_windows",
"nomsan",
"notsan",
], ],
deps = [ deps = [
"//:gpr", "//:gpr",

Loading…
Cancel
Save