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

Side by Side Diff: chrome/test/ui/pepper_uitest.cc

Issue 2088010: PepperTester.Pepper3D FAILS_. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/file_path.h" 5 #include "base/file_path.h"
6 #include "chrome/common/chrome_switches.h" 6 #include "chrome/common/chrome_switches.h"
7 #include "chrome/test/ui/npapi_test_helper.h" 7 #include "chrome/test/ui/npapi_test_helper.h"
8 #include "chrome/test/ui_test_utils.h" 8 #include "chrome/test/ui_test_utils.h"
9 9
10 #if defined(OS_WIN) 10 #if defined(OS_WIN)
(...skipping 17 matching lines...) Expand all
28 launch_arguments_.AppendSwitch(switches::kNoSandbox); 28 launch_arguments_.AppendSwitch(switches::kNoSandbox);
29 launch_arguments_.AppendSwitch(switches::kInternalPepper); 29 launch_arguments_.AppendSwitch(switches::kInternalPepper);
30 launch_arguments_.AppendSwitch(switches::kEnableGPUPlugin); 30 launch_arguments_.AppendSwitch(switches::kEnableGPUPlugin);
31 NPAPITesterBase::SetUp(); 31 NPAPITesterBase::SetUp();
32 } 32 }
33 }; 33 };
34 34
35 // Test that a pepper 3d plugin loads and renders. 35 // Test that a pepper 3d plugin loads and renders.
36 // TODO(alokp): Enable the test after making sure it works on all platforms 36 // TODO(alokp): Enable the test after making sure it works on all platforms
37 // and buildbots have OpenGL support. 37 // and buildbots have OpenGL support.
38 // Fails on XP Build. http://crbug.com/44603
38 #if defined(OS_WIN) 39 #if defined(OS_WIN)
39 TEST_F(PepperTester, Pepper3D) { 40 TEST_F(PepperTester, FAILS_Pepper3D) {
40 const FilePath dir(FILE_PATH_LITERAL("pepper")); 41 const FilePath dir(FILE_PATH_LITERAL("pepper"));
41 const FilePath file(FILE_PATH_LITERAL("pepper_3d.html")); 42 const FilePath file(FILE_PATH_LITERAL("pepper_3d.html"));
42 GURL url = ui_test_utils::GetTestUrl(dir, file); 43 GURL url = ui_test_utils::GetTestUrl(dir, file);
43 ASSERT_NO_FATAL_FAILURE(NavigateToURL(url)); 44 ASSERT_NO_FATAL_FAILURE(NavigateToURL(url));
44 WaitForFinish("pepper_3d", "1", url, 45 WaitForFinish("pepper_3d", "1", url,
45 kTestCompleteCookie, kTestCompleteSuccess, 46 kTestCompleteCookie, kTestCompleteSuccess,
46 action_max_timeout_ms()); 47 action_max_timeout_ms());
47 } 48 }
48 #endif 49 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698