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

ASAN failing tests on PPAPITest.*

Disables ALL PPAPITest.* tests under ASAN.  Increasing timeouts and selective
per-test disablement did not work.  So ifdef'ing out the whole bunch under ASAN.

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

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111238 0039d316-1c4b-4281-b951-d872f2087c98
parent f354affa
......@@ -231,6 +231,11 @@ class PPAPINaClTest : public PPAPITestBase {
// Interface tests.
//
// Disable tests under ASAN. http://crbug.com/104832.
// This is a bit heavy handed, but the majority of these tests fail under ASAN.
// See bug for history.
#if !defined(ADDRESS_SANITIZER)
TEST_PPAPI_IN_PROCESS(Broker)
TEST_PPAPI_OUT_OF_PROCESS(Broker)
......@@ -446,3 +451,5 @@ TEST_PPAPI_OUT_OF_PROCESS(Flash_GetCommandLineArgs)
TEST_PPAPI_IN_PROCESS(WebSocket_Create)
TEST_PPAPI_IN_PROCESS(WebSocket_IsWebSocket)
#endif // ADDRESS_SANITIZER
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