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

Side by Side Diff: base/memory/discardable_memory_unittest.cc

Issue 15650016: [Not for review] Discardable memory emulation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/memory/discardable_memory.h" 5 #include "base/memory/discardable_memory.h"
6 #include "testing/gtest/include/gtest/gtest.h" 6 #include "testing/gtest/include/gtest/gtest.h"
7 7
8 namespace base { 8 namespace base {
9 9
10 #if defined(OS_ANDROID) || defined(OS_MACOSX)
11 // Test Lock() and Unlock() functionalities. 10 // Test Lock() and Unlock() functionalities.
12 TEST(DiscardableMemoryTest, LockAndUnLock) { 11 TEST(DiscardableMemoryTest, LockAndUnLock) {
13 ASSERT_TRUE(DiscardableMemory::Supported());
14
15 const size_t size = 1024; 12 const size_t size = 1024;
16 13
17 DiscardableMemory memory; 14 DiscardableMemory memory;
18 ASSERT_TRUE(memory.InitializeAndLock(size)); 15 ASSERT_TRUE(memory.InitializeAndLock(size));
19 void* addr = memory.Memory(); 16 void* addr = memory.Memory();
20 ASSERT_NE(static_cast<void*>(NULL), addr); 17 ASSERT_NE(static_cast<void*>(NULL), addr);
21 18
22 memory.Unlock(); 19 memory.Unlock();
23 // The system should have no reason to purge discardable blocks in this brief 20 // The system should have no reason to purge discardable blocks in this brief
24 // interval, though technically speaking this might flake. 21 // interval, though technically speaking this might flake.
25 EXPECT_EQ(DISCARDABLE_MEMORY_SUCCESS, memory.Lock()); 22 EXPECT_EQ(DISCARDABLE_MEMORY_SUCCESS, memory.Lock());
26 addr = memory.Memory(); 23 addr = memory.Memory();
27 ASSERT_NE(static_cast<void*>(NULL), addr); 24 ASSERT_NE(static_cast<void*>(NULL), addr);
28 25
29 memory.Unlock(); 26 memory.Unlock();
30 } 27 }
31 28
32 // Test delete a discardable memory while it is locked. 29 // Test delete a discardable memory while it is locked.
33 TEST(DiscardableMemoryTest, DeleteWhileLocked) { 30 TEST(DiscardableMemoryTest, DeleteWhileLocked) {
34 ASSERT_TRUE(DiscardableMemory::Supported());
35
36 const size_t size = 1024; 31 const size_t size = 1024;
37 32
38 DiscardableMemory memory; 33 DiscardableMemory memory;
39 ASSERT_TRUE(memory.InitializeAndLock(size)); 34 ASSERT_TRUE(memory.InitializeAndLock(size));
40 } 35 }
41 36
42 #if defined(OS_MACOSX) 37 #if !defined(OS_ANDROID)
43 // Test forced purging. 38 // Test forced purging.
44 TEST(DiscardableMemoryTest, Purge) { 39 TEST(DiscardableMemoryTest, Purge) {
45 ASSERT_TRUE(DiscardableMemory::Supported());
46 ASSERT_TRUE(DiscardableMemory::PurgeForTestingSupported()); 40 ASSERT_TRUE(DiscardableMemory::PurgeForTestingSupported());
47 41
48 const size_t size = 1024; 42 const size_t size = 1024;
49 43
50 DiscardableMemory memory; 44 DiscardableMemory memory;
51 ASSERT_TRUE(memory.InitializeAndLock(size)); 45 ASSERT_TRUE(memory.InitializeAndLock(size));
52 memory.Unlock(); 46 memory.Unlock();
53 47
54 DiscardableMemory::PurgeForTesting(); 48 DiscardableMemory::PurgeForTesting();
55 EXPECT_EQ(DISCARDABLE_MEMORY_PURGED, memory.Lock()); 49 EXPECT_EQ(DISCARDABLE_MEMORY_PURGED, memory.Lock());
56 } 50 }
57 #endif // OS_MACOSX 51 #endif // !OS_ANDROID
58
59 #endif // OS_*
60 52
61 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698