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

Unified Diff: net/spdy/spdy_framer_test.cc

Issue 14087007: Linux: fix expectations for USE_SYSTEM_ZLIB (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer_test.cc
diff --git a/net/spdy/spdy_framer_test.cc b/net/spdy/spdy_framer_test.cc
index 97d00c3f24d67fae4bc7503cf8d0f8864db6c73d..9db827e0b7ad9f71aa94205ab8df802966b8b3e3 100644
--- a/net/spdy/spdy_framer_test.cc
+++ b/net/spdy/spdy_framer_test.cc
@@ -934,14 +934,14 @@ TEST_P(SpdyFramerTest, BasicCompression) {
if (IsSpdy2()) {
EXPECT_EQ(139u, visitor->last_uncompressed_size_);
#if defined(USE_SYSTEM_ZLIB)
- EXPECT_EQ(93u, visitor->last_compressed_size_);
+ EXPECT_EQ(155u, visitor->last_compressed_size_);
#else // !defined(USE_SYSTEM_ZLIB)
EXPECT_EQ(135u, visitor->last_compressed_size_);
#endif // !defined(USE_SYSTEM_ZLIB)
} else {
EXPECT_EQ(165u, visitor->last_uncompressed_size_);
#if defined(USE_SYSTEM_ZLIB)
- EXPECT_EQ(72u, visitor->last_compressed_size_);
+ EXPECT_EQ(181u, visitor->last_compressed_size_);
#else // !defined(USE_SYSTEM_ZLIB)
EXPECT_EQ(117u, visitor->last_compressed_size_);
#endif // !defined(USE_SYSTEM_ZLIB)
@@ -970,14 +970,14 @@ TEST_P(SpdyFramerTest, BasicCompression) {
if (IsSpdy2()) {
EXPECT_EQ(139u, visitor->last_uncompressed_size_);
#if defined(USE_SYSTEM_ZLIB)
- EXPECT_EQ(9u, visitor->last_compressed_size_);
+ EXPECT_EQ(149u, visitor->last_compressed_size_);
#else // !defined(USE_SYSTEM_ZLIB)
EXPECT_EQ(101u, visitor->last_compressed_size_);
#endif // !defined(USE_SYSTEM_ZLIB)
} else {
EXPECT_EQ(165u, visitor->last_uncompressed_size_);
#if defined(USE_SYSTEM_ZLIB)
- EXPECT_EQ(9u, visitor->last_compressed_size_);
+ EXPECT_EQ(175u, visitor->last_compressed_size_);
#else // !defined(USE_SYSTEM_ZLIB)
EXPECT_EQ(102u, visitor->last_compressed_size_);
#endif // !defined(USE_SYSTEM_ZLIB)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698