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

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

Issue 9447011: Disable three tests from PPAPINaClTest.NetAddressPrivateUntrusted_*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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) 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 "base/file_util.h" 5 #include "base/file_util.h"
6 #include "base/path_service.h" 6 #include "base/path_service.h"
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 "content/public/common/content_switches.h" 9 #include "content/public/common/content_switches.h"
10 #include "content/common/pepper_plugin_registry.h" 10 #include "content/common/pepper_plugin_registry.h"
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_AreEqual) 691 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_AreEqual)
692 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_AreHostsEqual) 692 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_AreHostsEqual)
693 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_Describe) 693 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_Describe)
694 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_ReplacePort) 694 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_ReplacePort)
695 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_GetAnyAddress) 695 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_GetAnyAddress)
696 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_DescribeIPv6) 696 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_DescribeIPv6)
697 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_GetFamily) 697 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_GetFamily)
698 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_GetPort) 698 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_GetPort)
699 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_GetAddress) 699 TEST_PPAPI_OUT_OF_PROCESS(NetAddressPrivate_GetAddress)
700 700
701 // Frequently timing out on Windows. http://crbug.com/115440
702 #if defined(OS_WIN)
703 #define MAYBE_NetAddressPrivateUntrusted_Describe \
704 DISABLED_NetAddressPrivateUntrusted_Describe
705 #define MAYBE_NetAddressPrivateUntrusted_ReplacePort \
706 DISABLED_NetAddressPrivateUntrusted_ReplacePort
707 #define MAYBE_NetAddressPrivateUntrusted_GetPort \
708 DISABLED_NetAddressPrivateUntrusted_GetPort
709 #else
710 #define MAYBE_NetAddressPrivateUntrusted_Describe \
711 NetAddressPrivateUntrusted_Describe
712 #define MAYBE_NetAddressPrivateUntrusted_ReplacePort \
713 NetAddressPrivateUntrusted_ReplacePort
714 #define MAYBE_NetAddressPrivateUntrusted_GetPort \
715 NetAddressPrivateUntrusted_GetPort
716 #endif
717
701 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreEqual) 718 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreEqual)
702 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreHostsEqual) 719 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreHostsEqual)
703 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_Describe) 720 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_Describe)
704 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_ReplacePort) 721 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_ReplacePort)
705 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAnyAddress) 722 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAnyAddress)
706 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetFamily) 723 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetFamily)
707 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetPort) 724 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_GetPort)
708 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAddress) 725 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAddress)
709 726
710 // PPB_TCPSocket_Private currently isn't supported in-process. 727 // PPB_TCPSocket_Private currently isn't supported in-process.
711 TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) { 728 TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) {
712 RunTestViaHTTP("TCPSocketPrivate"); 729 RunTestViaHTTP("TCPSocketPrivate");
713 } 730 }
714 731
715 TEST_PPAPI_IN_PROCESS(Flash_SetInstanceAlwaysOnTop) 732 TEST_PPAPI_IN_PROCESS(Flash_SetInstanceAlwaysOnTop)
716 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL) 733 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL)
717 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop) 734 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop)
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) 858 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess)
842 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) 859 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray)
843 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) 860 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement)
844 861
845 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) 862 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics)
846 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) 863 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit)
847 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) 864 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics)
848 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) 865 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit)
849 866
850 #endif // ADDRESS_SANITIZER 867 #endif // ADDRESS_SANITIZER
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