| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "URLRequestTestHTTP.BasicAuth", | 200 "URLRequestTestHTTP.BasicAuth", |
| 201 "URLRequestTestHTTP.BasicAuthWithCookies", | 201 "URLRequestTestHTTP.BasicAuthWithCookies", |
| 202 | 202 |
| 203 // ChromeFrame does not support load timing. | 203 // ChromeFrame does not support load timing. |
| 204 "URLRequestTestHTTP.BasicAuthLoadTiming", | 204 "URLRequestTestHTTP.BasicAuthLoadTiming", |
| 205 "URLRequestTestHTTP.GetTestLoadTiming", | 205 "URLRequestTestHTTP.GetTestLoadTiming", |
| 206 "URLRequestTestHTTP.RedirectLoadTiming", | 206 "URLRequestTestHTTP.RedirectLoadTiming", |
| 207 | 207 |
| 208 // HTTPS tests temporarily disabled due to the certificate error dialog. | 208 // HTTPS tests temporarily disabled due to the certificate error dialog. |
| 209 // TODO(tommi): The tests currently fail though, so need to fix. | 209 // TODO(tommi): The tests currently fail though, so need to fix. |
| 210 "HTTPSRequestTest.HTTPSMismatchedTest", | 210 "HTTPSRequestTest.*", |
| 211 "HTTPSRequestTest.HTTPSExpiredTest", | |
| 212 "HTTPSRequestTest.ClientAuthTest", | |
| 213 | 211 |
| 214 // More HTTPS tests failing due to certificate dialogs. | 212 // More HTTPS tests failing due to certificate dialogs. |
| 215 // http://crbug.com/102991 | 213 // http://crbug.com/102991 |
| 216 "URLRequestTestHTTP.HTTPSToHTTPRedirectNoRefererTest", | 214 "URLRequestTestHTTP.HTTPSToHTTPRedirectNoRefererTest", |
| 217 "HTTPSRequestTest.HTTPSGetTest", | 215 "HTTPSRequestTest.HTTPSGetTest", |
| 218 | 216 |
| 219 // Tests chrome's network stack's cache (might not apply to CF). | 217 // Tests chrome's network stack's cache (might not apply to CF). |
| 220 "URLRequestTestHTTP.VaryHeader", | 218 "URLRequestTestHTTP.VaryHeader", |
| 221 "URLRequestTestHTTP.GetZippedTest", | 219 "URLRequestTestHTTP.GetZippedTest", |
| 222 | 220 |
| (...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 content::InitializeSandboxInfo(&sandbox_info); | 987 content::InitializeSandboxInfo(&sandbox_info); |
| 990 FakeMainDelegate delegate; | 988 FakeMainDelegate delegate; |
| 991 content::ContentMain( | 989 content::ContentMain( |
| 992 reinterpret_cast<HINSTANCE>(GetModuleHandle(NULL)), | 990 reinterpret_cast<HINSTANCE>(GetModuleHandle(NULL)), |
| 993 &sandbox_info, | 991 &sandbox_info, |
| 994 &delegate); | 992 &delegate); |
| 995 | 993 |
| 996 // Note: In debug builds, we ExitProcess during PostDestroyThreads. | 994 // Note: In debug builds, we ExitProcess during PostDestroyThreads. |
| 997 return g_test_suite->test_result(); | 995 return g_test_suite->test_result(); |
| 998 } | 996 } |
| OLD | NEW |