OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project 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 "src/base/sys-info.h" | 5 #include "src/base/sys-info.h" |
6 #include "testing/gtest/include/gtest/gtest.h" | 6 #include "testing/gtest/include/gtest/gtest.h" |
7 | 7 |
8 #if V8_OS_NACL | 8 #if V8_OS_NACL |
9 #define DISABLE_ON_NACL(Name) DISABLED_##Name | 9 #define DISABLE_ON_NACL(Name) DISABLED_##Name |
10 #else | 10 #else |
(...skipping 12 matching lines...) Expand all Loading... |
23 EXPECT_LT(0, SysInfo::AmountOfPhysicalMemory()); | 23 EXPECT_LT(0, SysInfo::AmountOfPhysicalMemory()); |
24 } | 24 } |
25 | 25 |
26 | 26 |
27 TEST(SysInfoTest, AmountOfVirtualMemory) { | 27 TEST(SysInfoTest, AmountOfVirtualMemory) { |
28 EXPECT_LE(0, SysInfo::AmountOfVirtualMemory()); | 28 EXPECT_LE(0, SysInfo::AmountOfVirtualMemory()); |
29 } | 29 } |
30 | 30 |
31 } // namespace base | 31 } // namespace base |
32 } // namespace v8 | 32 } // namespace v8 |
OLD | NEW |