| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include <limits> |
| 6 |
| 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 #include "../../include/fxcrt/fx_memory.h" |
| 9 |
| 10 namespace { |
| 11 |
| 12 const size_t kMaxByteAlloc = std::numeric_limits<size_t>::max(); |
| 13 const size_t kMaxIntAlloc = kMaxByteAlloc / sizeof(int); |
| 14 const size_t kOverflowIntAlloc = kMaxIntAlloc + 100; |
| 15 |
| 16 } // namespace |
| 17 |
| 18 // TODO(tsepez): re-enable OOM tests if we can find a way to |
| 19 // prevent it from hosing the bots. |
| 20 TEST(fxcrt, DISABLED_FX_AllocOOM) { |
| 21 EXPECT_DEATH_IF_SUPPORTED(FX_Alloc(int, kMaxIntAlloc), ""); |
| 22 |
| 23 int* ptr = FX_Alloc(int, 1); |
| 24 EXPECT_TRUE(ptr); |
| 25 EXPECT_DEATH_IF_SUPPORTED(FX_Realloc(int, ptr, kMaxIntAlloc), ""); |
| 26 FX_Free(ptr); |
| 27 } |
| 28 |
| 29 TEST(fxcrt, FX_AllocOverflow) { |
| 30 EXPECT_DEATH_IF_SUPPORTED(FX_Alloc(int, kOverflowIntAlloc), ""); |
| 31 |
| 32 int* ptr = FX_Alloc(int, 1); |
| 33 EXPECT_TRUE(ptr); |
| 34 EXPECT_DEATH_IF_SUPPORTED(FX_Realloc(int, ptr, kOverflowIntAlloc), ""); |
| 35 FX_Free(ptr); |
| 36 } |
| 37 |
| 38 TEST(fxcrt, DISABLED_FX_TryAllocOOM) { |
| 39 EXPECT_FALSE(FX_TryAlloc(int, kMaxIntAlloc)); |
| 40 |
| 41 int* ptr = FX_Alloc(int, 1); |
| 42 EXPECT_TRUE(ptr); |
| 43 EXPECT_FALSE(FX_TryRealloc(int, ptr, kMaxIntAlloc)); |
| 44 FX_Free(ptr); |
| 45 } |
| 46 |
| 47 TEST(fxcrt, FX_TryAllocOverflow) { |
| 48 EXPECT_FALSE(FX_TryAlloc(int, kOverflowIntAlloc)); |
| 49 |
| 50 int* ptr = FX_Alloc(int, 1); |
| 51 EXPECT_TRUE(ptr); |
| 52 EXPECT_FALSE(FX_TryRealloc(int, ptr, kOverflowIntAlloc)); |
| 53 FX_Free(ptr); |
| 54 } |
| 55 |
| 56 TEST(fxcrt, DISABLED_FXMEM_DefaultOOM) { |
| 57 EXPECT_FALSE(FXMEM_DefaultAlloc(kMaxByteAlloc, 0)); |
| 58 |
| 59 void* ptr = FXMEM_DefaultAlloc(1, 0); |
| 60 EXPECT_TRUE(ptr); |
| 61 EXPECT_FALSE(FXMEM_DefaultRealloc(ptr, kMaxByteAlloc, 0)); |
| 62 FXMEM_DefaultFree(ptr, 0); |
| 63 } |
| OLD | NEW |