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

Unified Diff: sandbox/src/dep_test.cc

Issue 6816024: Revert 80819 due to failed tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 8 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 | « sandbox/src/Wow64.cc ('k') | sandbox/src/integrity_level_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/src/dep_test.cc
===================================================================
--- sandbox/src/dep_test.cc (revision 80823)
+++ sandbox/src/dep_test.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -12,6 +12,32 @@
namespace {
+class DepTest : public testing::Test {
+ public:
+ static bool IsTestCaseDisabled() {
+ OSVERSIONINFOEX version_info;
+ version_info.dwOSVersionInfoSize = sizeof version_info;
+ GetVersionEx(reinterpret_cast<OSVERSIONINFO*>(&version_info));
+
+ // Windows 2000 doesn't support DEP at all.
+ if (version_info.dwMajorVersion == 5 && version_info.dwMinorVersion == 0)
+ return true;
+
+ // Windows XP Service Pack 0 and 1 don't support DEP at all.
+ if (version_info.dwMajorVersion == 5 && version_info.dwMinorVersion == 1
+ && version_info.wServicePackMajor < 2)
+ return true;
+
+ // Bug 1212371 Vista SP0 DEP support is half-baked. Nobody seem to have
+ // noticed!
+ if (version_info.dwMajorVersion == 6 &&
+ version_info.wServicePackMajor == 0)
+ return true;
+
+ return false;
+ }
+};
+
BYTE kReturnCode[] = {
// ret
0xC3,
@@ -141,7 +167,7 @@
} // namespace
// This test is disabled. See bug 1275842
-TEST(DepTest, DISABLED_TestDepDisable) {
+TEST_F(DepTest, DISABLED_TestDepDisable) {
TestRunner runner(JOB_UNPROTECTED, USER_INTERACTIVE, USER_INTERACTIVE);
runner.SetTimeout(INFINITE);
« no previous file with comments | « sandbox/src/Wow64.cc ('k') | sandbox/src/integrity_level_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698