adb: fix mkdirs test.
The behavior of mkdirs was changed a while ago, without updating the
test.
Change-Id: I2aaa73818933b281e911c42a14e3c843d8bd972a
(cherry picked from commit 1172b2ec71db29533231ddc4d979be98d7503f0b)
diff --git a/adb/adb_utils_test.cpp b/adb/adb_utils_test.cpp
index 794dce6..dfe6f20 100644
--- a/adb/adb_utils_test.cpp
+++ b/adb/adb_utils_test.cpp
@@ -112,7 +112,7 @@
}
void test_mkdirs(const std::string basepath) {
- EXPECT_TRUE(mkdirs(basepath));
+ EXPECT_TRUE(mkdirs(adb_dirname(basepath)));
EXPECT_NE(-1, adb_creat(basepath.c_str(), 0600));
EXPECT_FALSE(mkdirs(basepath + "/subdir/"));
}