Commit 70bd4e54 authored by glider@chromium.org's avatar glider@chromium.org

Do not run BMPImageDecoderTest.DecodingSlow under TSan v2

TBR=jamesr@chromium.org

Review URL: https://codereview.chromium.org/23694017

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221687 0039d316-1c4b-4281-b951-d872f2087c98
parent 0bf879a2
...@@ -25,6 +25,12 @@ TEST_F(BMPImageDecoderTest, DecodingFast) { ...@@ -25,6 +25,12 @@ TEST_F(BMPImageDecoderTest, DecodingFast) {
TestDecoding(TEST_SMALLER, kThresholdSize); 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) { TEST_F(BMPImageDecoderTest, DecodingSlow) {
TestDecoding(TEST_BIGGER, kThresholdSize); TestDecoding(TEST_BIGGER, kThresholdSize);
} }
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