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

Unified Diff: delta_diff_generator_unittest.cc

Issue 5684002: Add support for bsdiff of file system metadata blocks (Closed) Base URL: http://git.chromium.org/git/update_engine.git@master
Patch Set: Addressed code review feedbacks Created 10 years 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
Index: delta_diff_generator_unittest.cc
diff --git a/delta_diff_generator_unittest.cc b/delta_diff_generator_unittest.cc
index 2a703994b66ecfa4bd7fc4656342b65295e45ece..bd0b48e6da2c2e92574ecfe00d5ad72fda0506a4 100644
--- a/delta_diff_generator_unittest.cc
+++ b/delta_diff_generator_unittest.cc
@@ -6,13 +6,17 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
+
#include <set>
#include <sstream>
#include <string>
#include <utility>
#include <vector>
+
+#include <base/logging.h>
+#include <base/string_util.h>
#include <gtest/gtest.h>
-#include "base/logging.h"
+
#include "update_engine/cycle_breaker.h"
#include "update_engine/delta_diff_generator.h"
#include "update_engine/delta_performer.h"
@@ -713,7 +717,7 @@ TEST_F(DeltaDiffGeneratorTest, RunAsRootAssignTempBlocksReuseTest) {
&fd));
ScopedFdCloser fd_closer(&fd);
off_t data_file_size = 0;
-
+
EXPECT_TRUE(DeltaDiffGenerator::AssignTempBlocks(&graph,
temp_dir,
fd,
« no previous file with comments | « delta_diff_generator.cc ('k') | delta_performer_unittest.cc » ('j') | test_utils.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698