Home
last modified time | relevance | path

Searched refs:ParseCommand (Results 1 – 1 of 1) sorted by relevance

/aosp14/system/core/fastboot/
H A Dtask_test.cpp56 std::unique_ptr<Task> ParseCommand(FlashingPlan* fp, std::string command) { in ParseCommand() function
108 ASSERT_EQ(ParseCommand(fp.get(), "flash"), nullptr); in TEST_F()
110 ASSERT_EQ(ParseCommand(fp.get(), "flash --apply-vbmeta"), nullptr); in TEST_F()
111 ASSERT_EQ(ParseCommand(fp.get(), "if-wipe"), nullptr); in TEST_F()
112 ASSERT_EQ(ParseCommand(fp.get(), "if-wipe flash"), nullptr); in TEST_F()
113 ASSERT_EQ(ParseCommand(fp.get(), "wipe dtbo"), nullptr); in TEST_F()
114 ASSERT_EQ(ParseCommand(fp.get(), "update-super dtbo"), nullptr); in TEST_F()
117 ASSERT_EQ(ParseCommand(fp.get(), in TEST_F()
120 ASSERT_EQ(ParseCommand(fp.get(), "erase"), nullptr); in TEST_F()
121 ASSERT_EQ(ParseCommand(fp.get(), "erase dtbo dtbo"), nullptr); in TEST_F()
[all …]