Restore fastboot delete-logical-partition command for VTS
1. delete-logical-partition was deleted - After merge "Don't require bootloader fastboot for VTS compliance." commit, delete-logical-partition sequence was deleted in LogicalPartitionCompliance test. "create-logical-partition failed" is occurred when run vts fastbootverification module. So restore this sequence. Signed-off-by: Yongcheol LEE <yongcheol09.lee@lge.com> Test: VTS Test: run vts -m VtsFastbootVerification Change-Id: I00366b281eafa5677b0941419a86f2702fb3484b
This commit is contained in:
parent
73ae00bbde
commit
019f731097
1 changed files with 4 additions and 0 deletions
|
|
@ -261,6 +261,10 @@ TEST_F(LogicalPartitionCompliance, CreateResizeDeleteLP) {
|
|||
GTEST_LOG_(INFO) << "Flashing a logical partition..";
|
||||
EXPECT_EQ(fb->FlashPartition(test_partition_name, buf), SUCCESS)
|
||||
<< "flash logical -partition failed";
|
||||
|
||||
GTEST_LOG_(INFO) << "Testing 'fastboot delete-logical-partition' command";
|
||||
EXPECT_EQ(fb->DeletePartition(test_partition_name), SUCCESS)
|
||||
<< "delete logical-partition failed";
|
||||
}
|
||||
|
||||
// Conformance tests
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue