From 1da35175c66788af1312547ec24d6e36234a0aa5 Mon Sep 17 00:00:00 2001 From: "ananta@chromium.org" Date: Thu, 22 Apr 2010 02:30:03 +0000 Subject: The HttpNegotiateTest.ReportProgress test fails on IE6 as we fail to retrieve the IBrowserService interface. Disabling this test for IE6 for now. Review URL: http://codereview.chromium.org/1731003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45277 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/test/http_negotiate_unittest.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'chrome_frame/test/http_negotiate_unittest.cc') diff --git a/chrome_frame/test/http_negotiate_unittest.cc b/chrome_frame/test/http_negotiate_unittest.cc index a8d2228..b203f61 100644 --- a/chrome_frame/test/http_negotiate_unittest.cc +++ b/chrome_frame/test/http_negotiate_unittest.cc @@ -10,6 +10,7 @@ #include "base/string_util.h" #include "chrome_frame/http_negotiate.h" #include "chrome_frame/html_utils.h" +#include "chrome_frame/test/chrome_frame_test_utils.h" #include "chrome_frame/utils.h" #include "gtest/gtest.h" #include "gmock/gmock.h" @@ -183,6 +184,10 @@ END_COM_MAP() }; TEST_F(HttpNegotiateTest, ReportProgress) { + if (chrome_frame_test::GetInstalledIEVersion() == IE_6) { + DLOG(INFO) << "Not running test for IE6"; + return; + } static const int kReportProgressIndex = 4; CComObjectStackEx test_sink; IInternetProtocolSink_ReportProgress_Fn original = -- cgit v1.1