diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-23 18:34:29 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-23 18:34:29 +0000 |
commit | f74ef78cf474ec6b14463867a555285314e5e67e (patch) | |
tree | a14da42dece4a50e3838d88c45eb776a379fefb0 /sandbox | |
parent | 29bbe847de4058b0a740a3f99633f4e649efaafd (diff) | |
download | chromium_src-f74ef78cf474ec6b14463867a555285314e5e67e.zip chromium_src-f74ef78cf474ec6b14463867a555285314e5e67e.tar.gz chromium_src-f74ef78cf474ec6b14463867a555285314e5e67e.tar.bz2 |
Sandbox: Disable a test that fails on Win64.
BUG=6944
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10860081
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153035 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/win/src/process_policy_test.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sandbox/win/src/process_policy_test.cc b/sandbox/win/src/process_policy_test.cc index 9fa5cb9..313cee6 100644 --- a/sandbox/win/src/process_policy_test.cc +++ b/sandbox/win/src/process_policy_test.cc @@ -317,6 +317,7 @@ TEST(ProcessPolicyTest, CreateProcessAW) { EXPECT_EQ(SBOX_TEST_SUCCEEDED, runner.RunTest(L"Process_RunApp6 findstr.exe")); +#if !defined(_WIN64) if (base::win::OSInfo::GetInstance()->version() >= base::win::VERSION_VISTA) { // WinXP results are not reliable. EXPECT_EQ(SBOX_TEST_SECOND_ERROR, @@ -324,6 +325,7 @@ TEST(ProcessPolicyTest, CreateProcessAW) { EXPECT_EQ(SBOX_TEST_SECOND_ERROR, runner.RunTest(L"Process_RunApp4 findstr.exe")); } +#endif } TEST(ProcessPolicyTest, OpenToken) { |