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

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

Issue 10861003: Disable many tests failing on mac 10.7 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/test/ppapi/ppapi_test.h" 5 #include "chrome/test/ppapi/ppapi_test.h"
6 6
7 #include "base/test/test_timeouts.h" 7 #include "base/test/test_timeouts.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/browser/ui/browser.h" 9 #include "chrome/browser/ui/browser.h"
10 #include "chrome/browser/ui/browser_navigator.h" 10 #include "chrome/browser/ui/browser_navigator.h"
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 #define MAYBE_OutOfProcessFlashFullscreen FlashFullscreen 505 #define MAYBE_OutOfProcessFlashFullscreen FlashFullscreen
506 #endif 506 #endif
507 507
508 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_FlashFullscreen) { 508 IN_PROC_BROWSER_TEST_F(PPAPITest, MAYBE_FlashFullscreen) {
509 RunTestViaHTTP("FlashFullscreen"); 509 RunTestViaHTTP("FlashFullscreen");
510 } 510 }
511 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen) { 511 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, MAYBE_OutOfProcessFlashFullscreen) {
512 RunTestViaHTTP("FlashFullscreen"); 512 RunTestViaHTTP("FlashFullscreen");
513 } 513 }
514 514
515 TEST_PPAPI_IN_PROCESS_VIA_HTTP(Fullscreen) 515 #if defined(OS_MACOSX)
516 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(Fullscreen) 516 // http://crbug.com/103912
517 TEST_PPAPI_NACL_VIA_HTTP(Fullscreen) 517 #define MAYBE_Fullscreen DISABLED_Fullscreen
518 #else
519 #define MAYBE_Fullscreen Fullscreen
520 #endif
521
522 TEST_PPAPI_IN_PROCESS_VIA_HTTP(MAYBE_Fullscreen)
523 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(MAYBE_Fullscreen)
524 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_Fullscreen)
518 525
519 TEST_PPAPI_IN_PROCESS(FlashClipboard) 526 TEST_PPAPI_IN_PROCESS(FlashClipboard)
520 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard) 527 TEST_PPAPI_OUT_OF_PROCESS(FlashClipboard)
521 528
522 TEST_PPAPI_IN_PROCESS(X509CertificatePrivate) 529 TEST_PPAPI_IN_PROCESS(X509CertificatePrivate)
523 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate) 530 TEST_PPAPI_OUT_OF_PROCESS(X509CertificatePrivate)
524 531
525 // http://crbug.com/63239 532 // http://crbug.com/63239
526 #if defined(OS_POSIX) 533 #if defined(OS_POSIX)
527 #define MAYBE_DirectoryReader DISABLED_DirectoryReader 534 #define MAYBE_DirectoryReader DISABLED_DirectoryReader
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) 809 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit)
803 810
804 TEST_PPAPI_IN_PROCESS(MouseCursor) 811 TEST_PPAPI_IN_PROCESS(MouseCursor)
805 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor) 812 TEST_PPAPI_OUT_OF_PROCESS(MouseCursor)
806 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor) 813 TEST_PPAPI_NACL_VIA_HTTP(MouseCursor)
807 814
808 // Only enabled in out-of-process mode. 815 // Only enabled in out-of-process mode.
809 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile) 816 TEST_PPAPI_OUT_OF_PROCESS(FlashFile_CreateTemporaryFile)
810 817
811 #endif // ADDRESS_SANITIZER 818 #endif // ADDRESS_SANITIZER
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698