summaryrefslogtreecommitdiffstats
path: root/tests/unit/zip_test.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-04-19 08:54:29 +0200
committerTao Bao <tbao@google.com>2017-05-02 06:51:54 +0200
commitb656a154ea497c1a179079f082b0a0701453bec5 (patch)
tree8e47eb4eab95da0b23a2372f1af34c2f932e9905 /tests/unit/zip_test.cpp
parentMerge "recovery: Change install_package() to take std::string." (diff)
downloadandroid_bootable_recovery-b656a154ea497c1a179079f082b0a0701453bec5.tar
android_bootable_recovery-b656a154ea497c1a179079f082b0a0701453bec5.tar.gz
android_bootable_recovery-b656a154ea497c1a179079f082b0a0701453bec5.tar.bz2
android_bootable_recovery-b656a154ea497c1a179079f082b0a0701453bec5.tar.lz
android_bootable_recovery-b656a154ea497c1a179079f082b0a0701453bec5.tar.xz
android_bootable_recovery-b656a154ea497c1a179079f082b0a0701453bec5.tar.zst
android_bootable_recovery-b656a154ea497c1a179079f082b0a0701453bec5.zip
Diffstat (limited to '')
-rw-r--r--tests/unit/zip_test.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/zip_test.cpp b/tests/unit/zip_test.cpp
index 4a1a49b97..df4e38cae 100644
--- a/tests/unit/zip_test.cpp
+++ b/tests/unit/zip_test.cpp
@@ -66,9 +66,9 @@ TEST(ZipTest, ExtractPackageRecursive) {
}
TEST(ZipTest, OpenFromMemory) {
- MemMapping map;
std::string zip_path = from_testdata_base("ziptest_dummy-update.zip");
- ASSERT_EQ(0, sysMapFile(zip_path.c_str(), &map));
+ MemMapping map;
+ ASSERT_TRUE(map.MapFile(zip_path));
// Map an update package into memory and open the archive from there.
ZipArchiveHandle handle;
@@ -85,6 +85,5 @@ TEST(ZipTest, OpenFromMemory) {
ASSERT_EQ(0, ExtractEntryToFile(handle, &binary_entry, tmp_binary.fd));
CloseArchive(handle);
- sysReleaseMap(&map);
}