summaryrefslogtreecommitdiffstats
path: root/tests/component
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-08-15 11:24:44 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-08-15 11:24:44 +0200
commitddcb99b80149107f95de72b48a824dd9d7d15bf8 (patch)
treec6dbc5655e0d1e8551a9f66c7425605769999d26 /tests/component
parentMerge "Add fastboot mode to recovery" am: 19a5316412 (diff)
parentMerge "Track the change to update_engine_sideload path." (diff)
downloadandroid_bootable_recovery-ddcb99b80149107f95de72b48a824dd9d7d15bf8.tar
android_bootable_recovery-ddcb99b80149107f95de72b48a824dd9d7d15bf8.tar.gz
android_bootable_recovery-ddcb99b80149107f95de72b48a824dd9d7d15bf8.tar.bz2
android_bootable_recovery-ddcb99b80149107f95de72b48a824dd9d7d15bf8.tar.lz
android_bootable_recovery-ddcb99b80149107f95de72b48a824dd9d7d15bf8.tar.xz
android_bootable_recovery-ddcb99b80149107f95de72b48a824dd9d7d15bf8.tar.zst
android_bootable_recovery-ddcb99b80149107f95de72b48a824dd9d7d15bf8.zip
Diffstat (limited to 'tests/component')
-rw-r--r--tests/component/install_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/component/install_test.cpp b/tests/component/install_test.cpp
index b9af0b18b..08b429000 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]);