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

Side by Side Diff: base/android/sys_utils_unittest.cc

Issue 258663002: Expose a low-end device mode override flags for non-android OSs as well (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments. Created 6 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
« no previous file with comments | « base/android/sys_utils.cc ('k') | base/base_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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/android/sys_utils.h"
6
7 #include <unistd.h> 5 #include <unistd.h>
8 6
7 #include "base/sys_info.h"
9 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
10 9
11 namespace base { 10 namespace base {
12 namespace android { 11 namespace android {
13 12
14 TEST(SysUtils, AmountOfPhysicalMemory) { 13 TEST(SysUtils, AmountOfPhysicalMemory) {
15 // Check that the RAM size reported by sysconf() matches the one 14 // Check that the RAM size reported by sysconf() matches the one
16 // computed by base::android::SysUtils::AmountOfPhysicalMemory(). 15 // computed by base::SysInfo::AmountOfPhysicalMemory().
17 size_t sys_ram_size = 16 size_t sys_ram_size =
18 static_cast<size_t>(sysconf(_SC_PHYS_PAGES) * PAGE_SIZE); 17 static_cast<size_t>(sysconf(_SC_PHYS_PAGES) * PAGE_SIZE);
19 EXPECT_EQ(sys_ram_size, SysUtils::AmountOfPhysicalMemoryKB() * 1024UL); 18 EXPECT_EQ(sys_ram_size, SysInfo::AmountOfPhysicalMemory());
20 } 19 }
21 20
22 } // namespace android 21 } // namespace android
23 } // namespace base 22 } // namespace base
OLDNEW
« no previous file with comments | « base/android/sys_utils.cc ('k') | base/base_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698