Skip to content

Commit

Permalink
Disable flaky DelegatingRenderer test
Browse files Browse the repository at this point in the history
See issue 822473. I'm just following instructions.

TBR=kylechar@chromium.org


Bug: 822473
Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel
Change-Id: If3e84296be13d52bbe3a08b7f744bc785f629142
Reviewed-on: https://chromium-review.googlesource.com/965402
Commit-Queue: Caleb Rouleau <crouleau@chromium.org>
Reviewed-by: Caleb Rouleau <crouleau@chromium.org>
Cr-Commit-Position: refs/heads/master@{#543598}
  • Loading branch information
CalebRouleau authored and Commit Bot committed Mar 16, 2018
1 parent c5062be commit e2c5dcb
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cc/test/layer_tree_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,11 @@ class LayerTreeTest : public testing::Test, public TestHooks {
} \
class SingleThreadDelegatingImplNeedsSemicolon##TEST_FIXTURE_NAME {}

#define MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) \
TEST_F(TEST_FIXTURE_NAME, RunMultiThread_DelegatingRenderer) { \
RunTest(CompositorMode::THREADED); \
} \
// TODO(crbug.com/822473): Fix flaky test.
#define MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) \
TEST_F(TEST_FIXTURE_NAME, DISABLED_RunMultiThread_DelegatingRenderer) { \
RunTest(CompositorMode::THREADED); \
} \
class MultiThreadDelegatingImplNeedsSemicolon##TEST_FIXTURE_NAME {}

#define SINGLE_AND_MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) \
Expand Down

0 comments on commit e2c5dcb

Please sign in to comment.