summaryrefslogtreecommitdiffstats
path: root/chrome_frame/test/net
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-05 00:18:14 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-05 00:18:14 +0000
commitdf680a8bb1bb8660c85f63205d0bd220a0f1fd73 (patch)
tree2d10bed8c599e2bdb48ac40c03aa5f610424a751 /chrome_frame/test/net
parent7868ecabafc39bcd917276899742be136cca2ae3 (diff)
downloadchromium_src-df680a8bb1bb8660c85f63205d0bd220a0f1fd73.zip
chromium_src-df680a8bb1bb8660c85f63205d0bd220a0f1fd73.tar.gz
chromium_src-df680a8bb1bb8660c85f63205d0bd220a0f1fd73.tar.bz2
Revert 77002 - Enable ChromeFrame net tests. These tests regressed with the change in the chunked upload
code in net to move the formatting of individual chunks to the http network stack. This caused the URLRequestTestHTTP.TestPostChunkedDataBeforeStart test to hang in ChromeFrame. Fix is to ensure that the individual chunks are properly formatted while marshaling them over IPC. BUG=none TEST=chrome frame net tests should pass. Review URL: http://codereview.chromium.org/6626035 TBR=ananta@chromium.org Review URL: http://codereview.chromium.org/6628029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77004 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/test/net')
-rw-r--r--chrome_frame/test/net/fake_external_tab.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome_frame/test/net/fake_external_tab.cc b/chrome_frame/test/net/fake_external_tab.cc
index fe3cc03e..d38dc7c 100644
--- a/chrome_frame/test/net/fake_external_tab.cc
+++ b/chrome_frame/test/net/fake_external_tab.cc
@@ -505,7 +505,10 @@ int main(int argc, char** argv) {
return 0;
}
+ return 0;
+
// TODO(tommi): Stuff be broke. Needs a fixin'.
+#if 0
// This is awkward: the TestSuite derived CFUrlRequestUnittestRunner contains
// the instance of the AtExitManager that RegisterPathProvider() and others
// below require. So we have to instantiate this first.
@@ -524,4 +527,5 @@ int main(int argc, char** argv) {
PluginService::EnableChromePlugins(false);
test_suite.RunMainUIThread();
return 0;
+#endif
}