Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1172b2ec authored by Josh Gao's avatar Josh Gao
Browse files

adb: fix mkdirs test.

The behavior of mkdirs was changed a while ago, without updating the
test.

Change-Id: I2aaa73818933b281e911c42a14e3c843d8bd972a
parent 205cdb88
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@ TEST(adb_utils, adb_dirname) {
}

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/"));
}