| OLD | NEW |
| 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_frame/test/net/fake_external_tab.h" | 5 #include "chrome_frame/test/net/fake_external_tab.h" |
| 6 | 6 |
| 7 #include <atlbase.h> | 7 #include <atlbase.h> |
| 8 #include <atlcom.h> | 8 #include <atlcom.h> |
| 9 #include <exdisp.h> | 9 #include <exdisp.h> |
| 10 #include <Winsock2.h> | 10 #include <Winsock2.h> |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncNoAction", | 290 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncNoAction", |
| 291 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncSetAuth", | 291 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncSetAuth", |
| 292 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncCancel", | 292 "URLRequestTestHTTP.NetworkDelegateOnAuthRequiredAsyncCancel", |
| 293 | 293 |
| 294 // Flaky on the tryservers, http://crbug.com/103097 | 294 // Flaky on the tryservers, http://crbug.com/103097 |
| 295 "URLRequestTestHTTP.MultipleRedirectTest", | 295 "URLRequestTestHTTP.MultipleRedirectTest", |
| 296 "URLRequestTestHTTP.NetworkDelegateRedirectRequest", | 296 "URLRequestTestHTTP.NetworkDelegateRedirectRequest", |
| 297 | 297 |
| 298 // These tests are unsupported in CF. | 298 // These tests are unsupported in CF. |
| 299 "HTTPSRequestTest.HTTPSPreloadedHSTSTest", | 299 "HTTPSRequestTest.HTTPSPreloadedHSTSTest", |
| 300 "HTTPSRequestTest.HTTPSErrorsNoClobberTSSTest", |
| 301 "HTTPSRequestTest.HSTSPreservesPosts", |
| 300 "HTTPSRequestTest.ResumeTest", | 302 "HTTPSRequestTest.ResumeTest", |
| 301 "HTTPSRequestTest.SSLSessionCacheShardTest", | 303 "HTTPSRequestTest.SSLSessionCacheShardTest", |
| 302 "HTTPSRequestTest.SSLSessionCacheShardTest", | 304 "HTTPSRequestTest.SSLSessionCacheShardTest", |
| 303 "HTTPSRequestTest.SSLv3Fallback", | 305 "HTTPSRequestTest.SSLv3Fallback", |
| 304 "HTTPSRequestTest.TLSv1Fallback", | 306 "HTTPSRequestTest.TLSv1Fallback", |
| 305 "HTTPSRequestTest.HTTPSErrorsNoClobberTSSTest", | |
| 306 "HTTPSOCSPTest.*", | 307 "HTTPSOCSPTest.*", |
| 307 "HTTPSEVCRLSetTest.*", | 308 "HTTPSEVCRLSetTest.*", |
| 308 "HTTPSCRLSetTest.*" | 309 "HTTPSCRLSetTest.*" |
| 309 }; | 310 }; |
| 310 | 311 |
| 311 const char* ie9_disabled_tests[] = { | 312 const char* ie9_disabled_tests[] = { |
| 312 // These always hang on Joi's box with IE9, http://crbug.com/105435. | 313 // These always hang on Joi's box with IE9, http://crbug.com/105435. |
| 313 // Several other tests, e.g. URLRequestTestHTTP.CancelTest2, 3 and | 314 // Several other tests, e.g. URLRequestTestHTTP.CancelTest2, 3 and |
| 314 // 5, often hang but not always. | 315 // 5, often hang but not always. |
| 315 "URLRequestTestHTTP.NetworkDelegateRedirectRequestPost", | 316 "URLRequestTestHTTP.NetworkDelegateRedirectRequestPost", |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 950 // content::InitializeSandboxInfo(&sandbox_info); | 951 // content::InitializeSandboxInfo(&sandbox_info); |
| 951 FakeMainDelegate delegate; | 952 FakeMainDelegate delegate; |
| 952 content::ContentMain( | 953 content::ContentMain( |
| 953 reinterpret_cast<HINSTANCE>(GetModuleHandle(NULL)), | 954 reinterpret_cast<HINSTANCE>(GetModuleHandle(NULL)), |
| 954 &sandbox_info, | 955 &sandbox_info, |
| 955 &delegate); | 956 &delegate); |
| 956 | 957 |
| 957 // Note: In debug builds, we ExitProcess during PostDestroyThreads. | 958 // Note: In debug builds, we ExitProcess during PostDestroyThreads. |
| 958 return g_test_suite->test_result(); | 959 return g_test_suite->test_result(); |
| 959 } | 960 } |
| OLD | NEW |