Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: base/allocator/malloc_zone_functions_mac_unittest.cc

Issue 2703803004: macOS: Shim all malloc zones. (Closed)
Patch Set: Rebase. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/allocator/malloc_zone_functions_mac.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/allocator/malloc_zone_functions_mac_unittest.cc
diff --git a/base/allocator/malloc_zone_functions_mac_unittest.cc b/base/allocator/malloc_zone_functions_mac_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ad638fcbcb716b3e9f763e15e2373dd3ac69d8ec
--- /dev/null
+++ b/base/allocator/malloc_zone_functions_mac_unittest.cc
@@ -0,0 +1,57 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/allocator/malloc_zone_functions_mac.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace base {
+namespace allocator {
+
+class MallocZoneFunctionsTest : public testing::Test {
+ protected:
+ void SetUp() override { ClearAllMallocZonesForTesting(); }
+};
+
+TEST_F(MallocZoneFunctionsTest, TestDefaultZoneMallocFree) {
+ ChromeMallocZone* malloc_zone =
+ reinterpret_cast<ChromeMallocZone*>(malloc_default_zone());
+ StoreMallocZone(malloc_zone);
+ int* test = reinterpret_cast<int*>(
+ g_malloc_zones[0].malloc(malloc_default_zone(), 33));
+ test[0] = 1;
+ test[1] = 2;
+ g_malloc_zones[0].free(malloc_default_zone(), test);
+}
+
+TEST_F(MallocZoneFunctionsTest, IsZoneAlreadyStored) {
+ ChromeMallocZone* malloc_zone =
+ reinterpret_cast<ChromeMallocZone*>(malloc_default_zone());
+ EXPECT_FALSE(IsMallocZoneAlreadyStored(malloc_zone));
+ StoreMallocZone(malloc_zone);
+ EXPECT_TRUE(IsMallocZoneAlreadyStored(malloc_zone));
+}
+
+TEST_F(MallocZoneFunctionsTest, CannotDoubleStoreZone) {
+ ChromeMallocZone* malloc_zone =
+ reinterpret_cast<ChromeMallocZone*>(malloc_default_zone());
+ StoreMallocZone(malloc_zone);
+ StoreMallocZone(malloc_zone);
+ EXPECT_EQ(1, GetMallocZoneCountForTesting());
+}
+
+TEST_F(MallocZoneFunctionsTest, CannotStoreMoreThanMaxZones) {
+ std::vector<ChromeMallocZone> zones;
+ zones.resize(kMaxZoneCount * 2);
+ for (int i = 0; i < kMaxZoneCount * 2; ++i) {
+ ChromeMallocZone& zone = zones[i];
+ memcpy(&zone, malloc_default_zone(), sizeof(ChromeMallocZone));
+ StoreMallocZone(&zone);
+ }
+
+ int max_zone_count = kMaxZoneCount;
+ EXPECT_EQ(max_zone_count, GetMallocZoneCountForTesting());
+}
+
+} // namespace allocator
+} // namespace base
« no previous file with comments | « base/allocator/malloc_zone_functions_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698