diff options
author | Tianjie Xu <xunchang@google.com> | 2017-03-17 02:03:49 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-03-17 02:03:49 +0100 |
commit | dda128abbf669c3309782e81e92d09f42b6227dc (patch) | |
tree | e5020480b29bd7af1cc117a137aa14be1306a858 /tests/component | |
parent | Merge "updater: Minor clean up to EnumerateStash()." am: 4fc7659612 (diff) | |
parent | Merge "More cleanup to imgdiff & imgpatch" (diff) | |
download | android_bootable_recovery-dda128abbf669c3309782e81e92d09f42b6227dc.tar android_bootable_recovery-dda128abbf669c3309782e81e92d09f42b6227dc.tar.gz android_bootable_recovery-dda128abbf669c3309782e81e92d09f42b6227dc.tar.bz2 android_bootable_recovery-dda128abbf669c3309782e81e92d09f42b6227dc.tar.lz android_bootable_recovery-dda128abbf669c3309782e81e92d09f42b6227dc.tar.xz android_bootable_recovery-dda128abbf669c3309782e81e92d09f42b6227dc.tar.zst android_bootable_recovery-dda128abbf669c3309782e81e92d09f42b6227dc.zip |
Diffstat (limited to '')
-rw-r--r-- | tests/component/imgdiff_test.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/component/imgdiff_test.cpp b/tests/component/imgdiff_test.cpp index be2dd385b..2f648501c 100644 --- a/tests/component/imgdiff_test.cpp +++ b/tests/component/imgdiff_test.cpp @@ -18,13 +18,14 @@ #include <vector> #include <android-base/file.h> +#include <android-base/memory.h> #include <android-base/test_utils.h> #include <applypatch/imgdiff.h> #include <applypatch/imgpatch.h> #include <gtest/gtest.h> #include <ziparchive/zip_writer.h> -#include "applypatch/utils.h" +using android::base::get_unaligned; static ssize_t MemorySink(const unsigned char* data, ssize_t len, void* token) { std::string* s = static_cast<std::string*>(token); @@ -41,7 +42,7 @@ static void verify_patch_header(const std::string& patch, size_t* num_normal, si ASSERT_GE(size, 12U); ASSERT_EQ("IMGDIFF2", std::string(data, 8)); - const int num_chunks = Read4(data + 8); + const int num_chunks = get_unaligned<int32_t>(data + 8); ASSERT_GE(num_chunks, 0); size_t normal = 0; @@ -51,7 +52,7 @@ static void verify_patch_header(const std::string& patch, size_t* num_normal, si size_t pos = 12; for (int i = 0; i < num_chunks; ++i) { ASSERT_LE(pos + 4, size); - int type = Read4(data + pos); + int type = get_unaligned<int32_t>(data + pos); pos += 4; if (type == CHUNK_NORMAL) { pos += 24; @@ -59,7 +60,7 @@ static void verify_patch_header(const std::string& patch, size_t* num_normal, si normal++; } else if (type == CHUNK_RAW) { ASSERT_LE(pos + 4, size); - ssize_t data_len = Read4(data + pos); + ssize_t data_len = get_unaligned<int32_t>(data + pos); ASSERT_GT(data_len, 0); pos += 4 + data_len; ASSERT_LE(pos, size); |