Index: content/renderer/bmp_image_decoder_unittest.cc |
=================================================================== |
--- content/renderer/bmp_image_decoder_unittest.cc (revision 221360) |
+++ content/renderer/bmp_image_decoder_unittest.cc (working copy) |
@@ -25,6 +25,12 @@ |
TestDecoding(TEST_SMALLER, kThresholdSize); |
} |
+#if defined(THREAD_SANITIZER) |
+// BMPImageDecoderTest.DecodingSlow als times out under ThreadSanitizer v2. |
+#define MAYBE_DecodingSlow DISABLED_DecodingSlow |
+#else |
+#define MAYBE_DecodingSlow DecodingSlow |
+#endif |
TEST_F(BMPImageDecoderTest, DecodingSlow) { |
TestDecoding(TEST_BIGGER, kThresholdSize); |
} |