Commit 068f74ff authored by dhollowa@chromium.org's avatar dhollowa@chromium.org

ASAN timeout on OutOfProcessPPAPITest.Crypto

Disables OutOfProcessPPAPITest.Crypto test on ASAN.

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

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111004 0039d316-1c4b-4281-b951-d872f2087c98
parent 0edc4bef
...@@ -290,15 +290,16 @@ TEST_PPAPI_OUT_OF_PROCESS(URLUtil) ...@@ -290,15 +290,16 @@ TEST_PPAPI_OUT_OF_PROCESS(URLUtil)
TEST_PPAPI_IN_PROCESS(CharSet) TEST_PPAPI_IN_PROCESS(CharSet)
TEST_PPAPI_OUT_OF_PROCESS(CharSet) TEST_PPAPI_OUT_OF_PROCESS(CharSet)
TEST_PPAPI_IN_PROCESS(Crypto) #if defined(ADDRESS_SANITIZER)
#if defined(OS_POSIX)
#define MAYBE_Crypto DISABLED_Crypto #define MAYBE_Crypto DISABLED_Crypto
#else #else
#define MAYBE_Crypto Crypto #define MAYBE_Crypto Crypto
#endif #endif
// http://crbug.com/104832 fails on ASAN, so this is an overly broad disable. // http://crbug.com/104832 fails on ASAN.
// But ASAN currently doesn't have a way to disable specific tests. TEST_F(PPAPITest, MAYBE_Crypto) {
TEST_F(OutOfProcessPPAPITest, Crypto) { RunTestViaHTTP("Crypto");
}
TEST_F(OutOfProcessPPAPITest, MAYBE_Crypto) {
RunTest("Crypto"); RunTest("Crypto");
} }
......
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