Commit c4b384a2 authored by Oystein Eftevaag's avatar Oystein Eftevaag Committed by Commit Bot

Disabled PerfettoIntegrationTest.CommitDataRequestIsMaybeComplete on tsan while investigating

The feature is behind a flag and I'm fairly sure this is an issue with the test itself,
so I'm disabling it for TSan while investigating.

Tbr: primiano@chromium.org
Bug: 846204
Change-Id: Ie0e05a35ceef124722e3cef545a2bc945a5b7849
Reviewed-on: https://chromium-review.googlesource.com/1071075Reviewed-by: default avataroysteine <oysteine@chromium.org>
Commit-Queue: oysteine <oysteine@chromium.org>
Cr-Commit-Position: refs/heads/master@{#561408}
parent 20e63a0d
...@@ -402,7 +402,13 @@ TEST_F(PerfettoIntegrationTest, PacketsEndToEndConsumerFirst) { ...@@ -402,7 +402,13 @@ TEST_F(PerfettoIntegrationTest, PacketsEndToEndConsumerFirst) {
ProducerClient::DeleteSoon(std::move(client)); ProducerClient::DeleteSoon(std::move(client));
} }
TEST_F(PerfettoIntegrationTest, CommitDataRequestIsMaybeComplete) { #if defined(THREAD_SANITIZER)
#define MAYBE_CommitDataRequestIsMaybeComplete \
DISABLED_CommitDataRequestIsMaybeComplete
#else
#define MAYBE_CommitDataRequestIsMaybeComplete CommitDataRequestIsMaybeComplete
#endif
TEST_F(PerfettoIntegrationTest, MAYBE_CommitDataRequestIsMaybeComplete) {
const size_t kNumPackets = 100; const size_t kNumPackets = 100;
base::RunLoop no_more_packets_runloop; base::RunLoop no_more_packets_runloop;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment