summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome_frame/test/net/fake_external_tab.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome_frame/test/net/fake_external_tab.cc b/chrome_frame/test/net/fake_external_tab.cc
index 299f0f1..5a7d371 100644
--- a/chrome_frame/test/net/fake_external_tab.cc
+++ b/chrome_frame/test/net/fake_external_tab.cc
@@ -609,13 +609,15 @@ const char* IEVersionToString(IEVersion version) {
}
int main(int argc, char** argv) {
- if (chrome_frame_test::GetInstalledIEVersion() >= IE_9) {
+ // TODO(joi): Remove the "true" part here and fix the log statement below.
+ if (true || chrome_frame_test::GetInstalledIEVersion() >= IE_9) {
// Adding this here as the command line and the logging stuff gets
// initialized in the NetTestSuite constructor. Did not want to break that.
base::AtExitManager at_exit_manager;
CommandLine::Init(argc, argv);
CFUrlRequestUnittestRunner::InitializeLogging();
- LOG(INFO) << "Not running ChromeFrame net tests on IE9+";
+ LOG(INFO) << "Temporarily not running any ChromeFrame "
+ << "net tests (http://crbug.com/105435)";
return 0;
}