| Index: base/trace_event/memory_allocator_dump_unittest.cc | 
| diff --git a/base/trace_event/memory_allocator_dump_unittest.cc b/base/trace_event/memory_allocator_dump_unittest.cc | 
| index 1bf9715917dedeb0181b8f2105cff6f17dd06d66..74f927bf5b3dcee30e63b3dd7c11747e2171bc2d 100644 | 
| --- a/base/trace_event/memory_allocator_dump_unittest.cc | 
| +++ b/base/trace_event/memory_allocator_dump_unittest.cc | 
| @@ -172,8 +172,9 @@ TEST(MemoryAllocatorDumpTest, DumpIntoProcessMemoryDump) { | 
| pmd.AsValueInto(traced_value.get()); | 
| } | 
|  | 
| -// DEATH tests are not supported in Android / iOS. | 
| -#if !defined(NDEBUG) && !defined(OS_ANDROID) && !defined(OS_IOS) | 
| +// DEATH tests are not supported in Android/iOS/Fuchsia. | 
| +#if !defined(NDEBUG) && !defined(OS_ANDROID) && !defined(OS_IOS) && \ | 
| +    !defined(OS_FUCHSIA) | 
| TEST(MemoryAllocatorDumpTest, ForbidDuplicatesDeathTest) { | 
| FakeMemoryAllocatorDumpProvider fmadp; | 
| MemoryDumpArgs dump_args = {MemoryDumpLevelOfDetail::DETAILED}; | 
|  |