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

Unified Diff: net/spdy/buffered_spdy_framer_unittest.cc

Issue 358493002: Land recent SPDY changes (through 70021377) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on code-review-feedback updates. 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/net.gypi ('k') | net/spdy/fuzzing/hpack_fuzz_util_test.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 30abe9601d645c19ac145d382051970d80cdc369..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";
@@ -251,6 +255,10 @@ TEST_P(BufferedSpdyFramerTest, ReadSynStreamHeaderBlock) {
}
TEST_P(BufferedSpdyFramerTest, ReadSynReplyHeaderBlock) {
+ if (spdy_version() > SPDY3) {
+ // SYN_REPLY not supported in SPDY>3.
+ return;
+ }
SpdyHeaderBlock headers;
headers["alpha"] = "beta";
headers["gamma"] = "delta";
« no previous file with comments | « net/net.gypi ('k') | net/spdy/fuzzing/hpack_fuzz_util_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698