Skip to content

Commit

Permalink
Disable LayerTreeHostScrollbarsPixelTest.HugeTransformScale on TSan
Browse files Browse the repository at this point in the history
Disable the test on TSan builders due to frequent timeouts.

TBR=danakj@chromium.org

Bug: 848994
Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;master.tryserver.blink:linux_trusty_blink_rel
Change-Id: I6ddeb111e2ee2432b958b6981ab4099e8e1c89b3
Reviewed-on: https://chromium-review.googlesource.com/1084830
Commit-Queue: Dominic Battré <battre@chromium.org>
Reviewed-by: Dominic Battré <battre@chromium.org>
Cr-Commit-Position: refs/heads/master@{#564052}
  • Loading branch information
Dominic Battre authored and Commit Bot committed Jun 4, 2018
1 parent 4379a7f commit 0d5bbfb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion cc/trees/layer_tree_host_pixeltest_scrollbars.cc
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,13 @@ TEST_F(LayerTreeHostScrollbarsPixelTest, TransformScale) {
base::FilePath(FILE_PATH_LITERAL("spiral_double_scale.png")));
}

TEST_F(LayerTreeHostScrollbarsPixelTest, HugeTransformScale) {
// Disabled on TSan due to frequent timeouts. crbug.com/848994
#if defined(THREAD_SANITIZER)
#define MAYBE_HugeTransformScale DISABLED_HugeTransformScale
#else
#define MAYBE_HugeTransformScale HugeTransformScale
#endif
TEST_F(LayerTreeHostScrollbarsPixelTest, MAYBE_HugeTransformScale) {
scoped_refptr<SolidColorLayer> background =
CreateSolidColorLayer(gfx::Rect(400, 400), SK_ColorWHITE);

Expand Down

0 comments on commit 0d5bbfb

Please sign in to comment.