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

Unified Diff: test/unittests/base/sys-info-unittest.cc

Issue 2175193003: Remove NaCl support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 5 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 | « test/cctest/test-api.cc ('k') | tools/nacl-run.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/base/sys-info-unittest.cc
diff --git a/test/unittests/base/sys-info-unittest.cc b/test/unittests/base/sys-info-unittest.cc
index a760f941f6f37c5bb5d03fd8d3e8351f8f5a1887..a97c08c91c099c4f21ba0ed2cd2c967a28cd33de 100644
--- a/test/unittests/base/sys-info-unittest.cc
+++ b/test/unittests/base/sys-info-unittest.cc
@@ -5,12 +5,6 @@
#include "src/base/sys-info.h"
#include "testing/gtest/include/gtest/gtest.h"
-#if V8_OS_NACL
-#define DISABLE_ON_NACL(Name) DISABLED_##Name
-#else
-#define DISABLE_ON_NACL(Name) Name
-#endif
-
namespace v8 {
namespace base {
@@ -18,8 +12,7 @@ TEST(SysInfoTest, NumberOfProcessors) {
EXPECT_LT(0, SysInfo::NumberOfProcessors());
}
-
-TEST(SysInfoTest, DISABLE_ON_NACL(AmountOfPhysicalMemory)) {
+TEST(SysInfoTest, AmountOfPhysicalMemory) {
EXPECT_LT(0, SysInfo::AmountOfPhysicalMemory());
}
« no previous file with comments | « test/cctest/test-api.cc ('k') | tools/nacl-run.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698