Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(534)

Unified Diff: net/spdy/buffered_spdy_framer_unittest.cc

Issue 357513003: Stop using SpdySynStreamIR for SPDY 4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: WebSocket test fix. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_network_transaction_unittest.cc ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/buffered_spdy_framer_unittest.cc
diff --git a/net/spdy/buffered_spdy_framer_unittest.cc b/net/spdy/buffered_spdy_framer_unittest.cc
index 08e40e3f36e3f7bc7f756831211f3eddcc24dbd7..ef5576ae8cd5443aeb307c6a7ab057fc36ef3f81 100644
--- a/net/spdy/buffered_spdy_framer_unittest.cc
+++ b/net/spdy/buffered_spdy_framer_unittest.cc
@@ -226,6 +226,10 @@ TEST_P(BufferedSpdyFramerTest, OnSetting) {
}
TEST_P(BufferedSpdyFramerTest, ReadSynStreamHeaderBlock) {
+ if (spdy_version() > SPDY3) {
+ // SYN_STREAM not supported in SPDY>3.
+ return;
+ }
SpdyHeaderBlock headers;
headers["aa"] = "vv";
headers["bb"] = "ww";
@@ -252,6 +256,7 @@ TEST_P(BufferedSpdyFramerTest, ReadSynStreamHeaderBlock) {
TEST_P(BufferedSpdyFramerTest, ReadSynReplyHeaderBlock) {
if (spdy_version() > SPDY3) {
+ // SYN_REPLY not supported in SPDY>3.
return;
}
SpdyHeaderBlock headers;
« no previous file with comments | « net/http/http_network_transaction_unittest.cc ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698