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

Unified Diff: src/platform/update_engine/filesystem_iterator_unittest.cc

Issue 891002: AU: Delta Diff Generator (Closed)
Patch Set: fixes for review Created 10 years, 9 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
Index: src/platform/update_engine/filesystem_iterator_unittest.cc
diff --git a/src/platform/update_engine/filesystem_iterator_unittest.cc b/src/platform/update_engine/filesystem_iterator_unittest.cc
index 82b8d3f4fe4b561bad8f663772d4aab624cda01b..da14b87426af9a8387f6d6856c048aa1ad5c379f 100644
--- a/src/platform/update_engine/filesystem_iterator_unittest.cc
+++ b/src/platform/update_engine/filesystem_iterator_unittest.cc
@@ -57,8 +57,8 @@ TEST_F(FilesystemIteratorTest, RunAsRootSuccessTest) {
expected_paths_vector.end());
VerifyAllPaths(kMountPath, expected_paths);
- EXPECT_EQ(0, System(string("umount ") + kMountPath + "/some_dir/mnt"));
- EXPECT_EQ(0, System(string("umount ") + kMountPath));
+ EXPECT_EQ(0, System(string("umount -d ") + kMountPath + "/some_dir/mnt"));
+ EXPECT_EQ(0, System(string("umount -d ") + kMountPath));
EXPECT_EQ(0, System(string("rm -f ") + first_image + " " + sub_image));
}
« no previous file with comments | « src/platform/update_engine/filesystem_copier_action_unittest.cc ('k') | src/platform/update_engine/generate_delta_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698