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

Side by Side Diff: content/test/ppapi/ppapi_browsertest.cc

Issue 770423005: Disable flaky OutOfProcessPPAPITest.MediaStreamAudioTrack on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "content/test/ppapi/ppapi_test.h" 5 #include "content/test/ppapi/ppapi_test.h"
6 #include "ppapi/shared_impl/test_harness_utils.h" 6 #include "ppapi/shared_impl/test_harness_utils.h"
7 7
8 // This file lists tests for Pepper APIs (without NaCl) against content_shell. 8 // This file lists tests for Pepper APIs (without NaCl) against content_shell.
9 // TODO(teravest): Move more tests here. http://crbug.com/371873 9 // TODO(teravest): Move more tests here. http://crbug.com/371873
10 10
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 IN_PROC_BROWSER_TEST_F(PPAPITest, Instance_RecursiveObjects) { 94 IN_PROC_BROWSER_TEST_F(PPAPITest, Instance_RecursiveObjects) {
95 RunTestAndReload("Instance_RecursiveObjects"); 95 RunTestAndReload("Instance_RecursiveObjects");
96 } 96 }
97 // TODO(dmichael): Make it work out-of-process (or at least see whether we 97 // TODO(dmichael): Make it work out-of-process (or at least see whether we
98 // care). 98 // care).
99 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, 99 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest,
100 DISABLED_Instance_RecursiveObjects) { 100 DISABLED_Instance_RecursiveObjects) {
101 RunTestAndReload("Instance_RecursiveObjects"); 101 RunTestAndReload("Instance_RecursiveObjects");
102 } 102 }
103 103
104 TEST_PPAPI_OUT_OF_PROCESS(MediaStreamAudioTrack) 104 #if defined(OS_WIN)
105 // Flaky on Windows (crbug.com/438729)
106 #define MAYBE_MediaStreamAudioTrack DISABLED_MediaStreamAudioTrack;
107 #else
108 #define MAYBE_MediaStreamAudioTrack MediaStreamAudioTrack;
109 #endif
110 TEST_PPAPI_OUT_OF_PROCESS(MAYBE_MediaStreamAudioTrack)
105 111
106 TEST_PPAPI_OUT_OF_PROCESS(MediaStreamVideoTrack) 112 TEST_PPAPI_OUT_OF_PROCESS(MediaStreamVideoTrack)
107 113
108 TEST_PPAPI_IN_PROCESS(Memory) 114 TEST_PPAPI_IN_PROCESS(Memory)
109 TEST_PPAPI_OUT_OF_PROCESS(Memory) 115 TEST_PPAPI_OUT_OF_PROCESS(Memory)
110 116
111 TEST_PPAPI_OUT_OF_PROCESS(MessageHandler) 117 TEST_PPAPI_OUT_OF_PROCESS(MessageHandler)
112 118
113 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics) 119 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Basics)
114 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post) 120 TEST_PPAPI_OUT_OF_PROCESS(MessageLoop_Post)
(...skipping 28 matching lines...) Expand all
143 TEST_PPAPI_IN_PROCESS(VarResource) 149 TEST_PPAPI_IN_PROCESS(VarResource)
144 TEST_PPAPI_OUT_OF_PROCESS(VarResource) 150 TEST_PPAPI_OUT_OF_PROCESS(VarResource)
145 151
146 TEST_PPAPI_OUT_OF_PROCESS(VideoDecoder) 152 TEST_PPAPI_OUT_OF_PROCESS(VideoDecoder)
147 153
148 TEST_PPAPI_IN_PROCESS(VideoDecoderDev) 154 TEST_PPAPI_IN_PROCESS(VideoDecoderDev)
149 TEST_PPAPI_OUT_OF_PROCESS(VideoDecoderDev) 155 TEST_PPAPI_OUT_OF_PROCESS(VideoDecoderDev)
150 156
151 } // namespace 157 } // namespace
152 } // namespace content 158 } // namespace content
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