| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 10 |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 "URLRequestTestHTTP.BasicAuthWithCookies", | 436 "URLRequestTestHTTP.BasicAuthWithCookies", |
| 437 | 437 |
| 438 // HTTPS tests temporarily disabled due to the certificate error dialog. | 438 // HTTPS tests temporarily disabled due to the certificate error dialog. |
| 439 // TODO(tommi): The tests currently fail though, so need to fix. | 439 // TODO(tommi): The tests currently fail though, so need to fix. |
| 440 "HTTPSRequestTest.HTTPSMismatchedTest", | 440 "HTTPSRequestTest.HTTPSMismatchedTest", |
| 441 "HTTPSRequestTest.HTTPSExpiredTest", | 441 "HTTPSRequestTest.HTTPSExpiredTest", |
| 442 "HTTPSRequestTest.ClientAuthTest", | 442 "HTTPSRequestTest.ClientAuthTest", |
| 443 | 443 |
| 444 // Tests chrome's network stack's cache (might not apply to CF). | 444 // Tests chrome's network stack's cache (might not apply to CF). |
| 445 "URLRequestTestHTTP.VaryHeader", | 445 "URLRequestTestHTTP.VaryHeader", |
| 446 "URLRequestTestHTTP.GetZippedTest", |
| 446 | 447 |
| 447 // I suspect we can only get this one to work (if at all) on IE8 and | 448 // I suspect we can only get this one to work (if at all) on IE8 and |
| 448 // later by using the new INTERNET_OPTION_SUPPRESS_BEHAVIOR flags | 449 // later by using the new INTERNET_OPTION_SUPPRESS_BEHAVIOR flags |
| 449 // See http://msdn.microsoft.com/en-us/library/aa385328(VS.85).aspx | 450 // See http://msdn.microsoft.com/en-us/library/aa385328(VS.85).aspx |
| 450 "URLRequestTest.DoNotSaveCookies", | 451 "URLRequestTest.DoNotSaveCookies", |
| 451 | 452 |
| 452 // TODO(ananta): This test has been consistently failing. Disabling it for | 453 // TODO(ananta): This test has been consistently failing. Disabling it for |
| 453 // now. | 454 // now. |
| 454 "URLRequestTestHTTP.GetTest_NoCache", | 455 "URLRequestTestHTTP.GetTest_NoCache", |
| 455 | 456 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 | 536 |
| 536 WindowWatchdog watchdog; | 537 WindowWatchdog watchdog; |
| 537 // See url_request_unittest.cc for these credentials. | 538 // See url_request_unittest.cc for these credentials. |
| 538 SupplyProxyCredentials credentials("user", "secret"); | 539 SupplyProxyCredentials credentials("user", "secret"); |
| 539 watchdog.AddObserver(&credentials, "Windows Security", ""); | 540 watchdog.AddObserver(&credentials, "Windows Security", ""); |
| 540 testing::InitGoogleTest(&argc, argv); | 541 testing::InitGoogleTest(&argc, argv); |
| 541 FilterDisabledTests(); | 542 FilterDisabledTests(); |
| 542 test_suite.RunMainUIThread(); | 543 test_suite.RunMainUIThread(); |
| 543 return test_suite.test_result(); | 544 return test_suite.test_result(); |
| 544 } | 545 } |
| OLD | NEW |