Commit aa2c776a authored by jschuh@chromium.org's avatar jschuh@chromium.org

Disable tcmalloc security tests on Windows

BUG=242304
R=jln@chromium.org
TBR=jln@chromium.org

Review URL: https://chromiumcodereview.appspot.com/15766009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202760 0039d316-1c4b-4281-b951-d872f2087c98
parent 432219ce
...@@ -46,8 +46,9 @@ Type HideValueFromCompiler(volatile Type value) { ...@@ -46,8 +46,9 @@ Type HideValueFromCompiler(volatile Type value) {
// - ADDRESS_SANITIZER because it has its own memory allocator // - ADDRESS_SANITIZER because it has its own memory allocator
// - IOS does not use tcmalloc // - IOS does not use tcmalloc
// - OS_MACOSX does not use tcmalloc // - OS_MACOSX does not use tcmalloc
// - OS_WIN does not use tcmalloc crbug.com/242304
#if !defined(NO_TCMALLOC) && !defined(ADDRESS_SANITIZER) && \ #if !defined(NO_TCMALLOC) && !defined(ADDRESS_SANITIZER) && \
!defined(OS_IOS) && !defined(OS_MACOSX) !defined(OS_IOS) && !defined(OS_MACOSX) && !defined(OS_WIN)
#define TCMALLOC_TEST(function) function #define TCMALLOC_TEST(function) function
#else #else
#define TCMALLOC_TEST(function) DISABLED_##function #define TCMALLOC_TEST(function) DISABLED_##function
......
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