Commit df24fe42 authored by dhollowa@chromium.org's avatar dhollowa@chromium.org

ASAN failing tests on OutOfProcessPPAPITest.*

Disables more failing OutOfProcessPPAPITest.* tests under ASAN.

BUG=104832
TEST=ASAN bot runs green
TBR=glider@chromium.org

Review URL: http://codereview.chromium.org/8636024

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111202 0039d316-1c4b-4281-b951-d872f2087c98
parent f9399ff8
......@@ -271,15 +271,27 @@ TEST_F(OutOfProcessPPAPITest, MAYBE_URLLoader) {
RunTestViaHTTP("URLLoader");
}
// http://crbug.com/104832
#if defined(ADDRESS_SANITIZER)
#define MAYBE_PaintAggregator DISABLED_PaintAggregator
#else
#define MAYBE_PaintAggregator PaintAggregator
#endif
TEST_PPAPI_IN_PROCESS(PaintAggregator)
TEST_PPAPI_OUT_OF_PROCESS(PaintAggregator)
TEST_F(OutOfProcessPPAPITest, MAYBE_PaintAggregator) {
RunTest("PaintAggregator");
}
TEST_PPAPI_NACL_VIA_HTTP(PaintAggregator)
#if defined(ADDRESS_SANITIZER)
#define MAYBE_Scrollbar DISABLED_Scrollbar
#else
#define MAYBE_Scrollbar FAILS_Scrollbar
#endif
TEST_PPAPI_IN_PROCESS(Scrollbar)
// http://crbug.com/89961
TEST_F(OutOfProcessPPAPITest, FAILS_Scrollbar) {
// http://crbug.com/104832
TEST_F(OutOfProcessPPAPITest, MAYBE_Scrollbar) {
RunTest("Scrollbar");
}
TEST_PPAPI_NACL_VIA_HTTP(Scrollbar)
......
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