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

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

Issue 3072006: Marked Pepper3D test as FAILS since it is failing on buildbots but passes on ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 4 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 | Annotate | Revision Log
« 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 6
7 #include "app/app_switches.h" 7 #include "app/app_switches.h"
8 #include "chrome/common/chrome_switches.h" 8 #include "chrome/common/chrome_switches.h"
9 #include "chrome/test/ui/npapi_test_helper.h" 9 #include "chrome/test/ui/npapi_test_helper.h"
10 #include "chrome/test/ui_test_utils.h" 10 #include "chrome/test/ui_test_utils.h"
(...skipping 23 matching lines...) Expand all
34 // graphics hardware. 34 // graphics hardware.
35 launch_arguments_.AppendSwitchWithValue(switches::kUseGL, "osmesa"); 35 launch_arguments_.AppendSwitchWithValue(switches::kUseGL, "osmesa");
36 NPAPITesterBase::SetUp(); 36 NPAPITesterBase::SetUp();
37 } 37 }
38 }; 38 };
39 39
40 // Test that a pepper 3d plugin loads and renders. 40 // Test that a pepper 3d plugin loads and renders.
41 // TODO(alokp): Enable the test after making sure it works on all platforms 41 // TODO(alokp): Enable the test after making sure it works on all platforms
42 // and buildbots have OpenGL support. 42 // and buildbots have OpenGL support.
43 #if defined(OS_WIN) 43 #if defined(OS_WIN)
44 TEST_F(PepperTester, Pepper3D) { 44 // Marked as FAILS (46662): failing on buildbots but passes on trybots.
45 TEST_F(PepperTester, FAILS_Pepper3D) {
45 const FilePath dir(FILE_PATH_LITERAL("pepper")); 46 const FilePath dir(FILE_PATH_LITERAL("pepper"));
46 const FilePath file(FILE_PATH_LITERAL("pepper_3d.html")); 47 const FilePath file(FILE_PATH_LITERAL("pepper_3d.html"));
47 GURL url = ui_test_utils::GetTestUrl(dir, file); 48 GURL url = ui_test_utils::GetTestUrl(dir, file);
48 ASSERT_NO_FATAL_FAILURE(NavigateToURL(url)); 49 ASSERT_NO_FATAL_FAILURE(NavigateToURL(url));
49 WaitForFinish("pepper_3d", "1", url, 50 WaitForFinish("pepper_3d", "1", url,
50 kTestCompleteCookie, kTestCompleteSuccess, 51 kTestCompleteCookie, kTestCompleteSuccess,
51 action_max_timeout_ms()); 52 action_max_timeout_ms());
52 } 53 }
53 #endif 54 #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