diff options
author | Tao Bao <tbao@google.com> | 2018-08-14 12:34:46 -0700 |
---|---|---|
committer | Tao Bao <tbao@google.com> | 2018-08-14 12:34:46 -0700 |
commit | 2cc9bbb1ec55b9e0b84c667e0657cc12a83c49d8 (patch) | |
tree | 631e235a0bbd9198b77688da19395820b883ad22 /tests/component/install_test.cpp | |
parent | c205dd9d43eb77725eea8bf836f2038c4eacd090 (diff) | |
download | android_bootable_recovery-2cc9bbb1ec55b9e0b84c667e0657cc12a83c49d8.tar.gz android_bootable_recovery-2cc9bbb1ec55b9e0b84c667e0657cc12a83c49d8.tar.bz2 android_bootable_recovery-2cc9bbb1ec55b9e0b84c667e0657cc12a83c49d8.zip |
Track the change to update_engine_sideload path.
Bug: 112494634
Test: Build and boot into recovery image on taimen. Verify that
`Apply updates from ADB` keeps working.
Test: Run recovery_component_test on marlin.
Change-Id: I9ee8834053fda79a4fd77bfa83eab3cc51a90dff
Diffstat (limited to 'tests/component/install_test.cpp')
-rw-r--r-- | tests/component/install_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/component/install_test.cpp b/tests/component/install_test.cpp index b9af0b18..08b42900 100644 --- a/tests/component/install_test.cpp +++ b/tests/component/install_test.cpp @@ -305,7 +305,7 @@ static void VerifyAbUpdateCommands(const std::string& serialno, bool success = t if (success) { ASSERT_EQ(0, SetUpAbUpdateCommands(package, zip, status_fd, &cmd)); ASSERT_EQ(5U, cmd.size()); - ASSERT_EQ("/sbin/update_engine_sideload", cmd[0]); + ASSERT_EQ("/system/bin/update_engine_sideload", cmd[0]); ASSERT_EQ("--payload=file://" + package, cmd[1]); ASSERT_EQ("--offset=" + std::to_string(payload_entry.offset), cmd[2]); ASSERT_EQ("--headers=" + properties, cmd[3]); |