| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/environment.h" | 5 #include "base/environment.h" |
| 6 #include "base/files/file_util.h" | 6 #include "base/files/file_util.h" |
| 7 #include "base/sys_info.h" | 7 #include "base/sys_info.h" |
| 8 #include "base/threading/platform_thread.h" | 8 #include "base/threading/platform_thread.h" |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/googletest/include/gtest/gtest.h" |
| 11 #include "testing/platform_test.h" | 11 #include "testing/platform_test.h" |
| 12 | 12 |
| 13 typedef PlatformTest SysInfoTest; | 13 typedef PlatformTest SysInfoTest; |
| 14 using base::FilePath; | 14 using base::FilePath; |
| 15 | 15 |
| 16 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) | 16 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 17 TEST_F(SysInfoTest, MaxSharedMemorySize) { | 17 TEST_F(SysInfoTest, MaxSharedMemorySize) { |
| 18 // We aren't actually testing that it's correct, just that it's sane. | 18 // We aren't actually testing that it's correct, just that it's sane. |
| 19 EXPECT_GT(base::SysInfo::MaxSharedMemorySize(), 0u); | 19 EXPECT_GT(base::SysInfo::MaxSharedMemorySize(), 0u); |
| 20 } | 20 } |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 base::SysInfo::SetChromeOSVersionInfoForTest(kLsbRelease2, base::Time()); | 146 base::SysInfo::SetChromeOSVersionInfoForTest(kLsbRelease2, base::Time()); |
| 147 EXPECT_TRUE(base::SysInfo::IsRunningOnChromeOS()); | 147 EXPECT_TRUE(base::SysInfo::IsRunningOnChromeOS()); |
| 148 | 148 |
| 149 const char kLsbRelease3[] = | 149 const char kLsbRelease3[] = |
| 150 "CHROMEOS_RELEASE_NAME=Chromium OS\n"; | 150 "CHROMEOS_RELEASE_NAME=Chromium OS\n"; |
| 151 base::SysInfo::SetChromeOSVersionInfoForTest(kLsbRelease3, base::Time()); | 151 base::SysInfo::SetChromeOSVersionInfoForTest(kLsbRelease3, base::Time()); |
| 152 EXPECT_TRUE(base::SysInfo::IsRunningOnChromeOS()); | 152 EXPECT_TRUE(base::SysInfo::IsRunningOnChromeOS()); |
| 153 } | 153 } |
| 154 | 154 |
| 155 #endif // OS_CHROMEOS | 155 #endif // OS_CHROMEOS |
| OLD | NEW |