blob: c46d71f83add7cd0c173d0bc3b8338fb06202c70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- base/security_unittest.cc.orig 2019-04-30 22:22:28 UTC
+++ base/security_unittest.cc
@@ -60,7 +60,7 @@ NOINLINE Type HideValueFromCompiler(volatile Type valu
// FAILS_ is too clunky.
void OverflowTestsSoftExpectTrue(bool overflow_detected) {
if (!overflow_detected) {
-#if defined(OS_LINUX) || defined(OS_ANDROID) || defined(OS_MACOSX)
+#if defined(OS_POSIX) && !defined(OS_NACL)
// Sadly, on Linux, Android, and OSX we don't have a good story yet. Don't
// fail the test, but report.
printf("Platform has overflow: %s\n",
|