HomeSort by relevance Sort by last modified time
    Searched refs:boot_verify (Results 1 - 2 of 2) sorted by null

  /bootable/recovery/tests/component/
bootloader_message_test.cpp 80 bootloader_message boot_verify; local
81 ASSERT_TRUE(read_bootloader_message(&boot_verify, &err)) << "Failed to read BCB: " << err;
84 std::string(reinterpret_cast<const char*>(&boot_verify), sizeof(boot_verify)));
195 bootloader_message boot_verify; local
196 ASSERT_TRUE(read_bootloader_message(&boot_verify, &err)) << "Failed to read BCB: " << err;
199 ASSERT_EQ("boot-recovery", std::string(boot_verify.command));
201 ASSERT_EQ(expected, std::string(boot_verify.recovery));
204 ASSERT_EQ(std::string(boot.status), std::string(boot_verify.status));
205 ASSERT_EQ(std::string(boot.stage), std::string(boot_verify.stage))
    [all...]
updater_test.cpp 452 bootloader_message boot_verify; local
453 ASSERT_TRUE(read_bootloader_message_from(&boot_verify, temp_file, &err));
456 ASSERT_STREQ("1/3", boot_verify.stage);
457 ASSERT_STREQ(boot.command, boot_verify.command);

Completed in 87 milliseconds