| Index: base/security_unittest.cc
|
| diff --git a/base/security_unittest.cc b/base/security_unittest.cc
|
| index c5fe92153ff5ed944298d17704643c3a2eb5581e..af9d2bf19d3a52b15a53fdbd1032afe639336fac 100644
|
| --- a/base/security_unittest.cc
|
| +++ b/base/security_unittest.cc
|
| @@ -87,13 +87,14 @@
|
| }
|
| }
|
|
|
| -#if defined(OS_IOS) || defined(OS_LINUX)
|
| +#if defined(OS_IOS) || defined(OS_WIN) || defined(OS_LINUX)
|
| #define MAYBE_NewOverflow DISABLED_NewOverflow
|
| #else
|
| #define MAYBE_NewOverflow NewOverflow
|
| #endif
|
| // Test array[TooBig][X] and array[X][TooBig] allocations for int overflows.
|
| // IOS doesn't honor nothrow, so disable the test there.
|
| +// Crashes on Windows Dbg builds, disable there as well.
|
| // Disabled on Linux because failing Linux Valgrind bot, and Valgrind exclusions
|
| // are not currently read. See http://crbug.com/582398
|
| TEST(SecurityTest, MAYBE_NewOverflow) {
|
|
|