diff options
author | Tianjie Xu <xunchang@google.com> | 2018-08-28 04:05:17 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-08-28 04:05:17 +0200 |
commit | a1e3d67bd7fca7228780752872ca482589c3be45 (patch) | |
tree | 52cbaff31cc4737469b1a66e1a2e51ca8494b7cc /tests | |
parent | Merge "uncrypt: Depend on commonly used shared libs." (diff) | |
parent | Remove otafault (diff) | |
download | android_bootable_recovery-a1e3d67bd7fca7228780752872ca482589c3be45.tar android_bootable_recovery-a1e3d67bd7fca7228780752872ca482589c3be45.tar.gz android_bootable_recovery-a1e3d67bd7fca7228780752872ca482589c3be45.tar.bz2 android_bootable_recovery-a1e3d67bd7fca7228780752872ca482589c3be45.tar.lz android_bootable_recovery-a1e3d67bd7fca7228780752872ca482589c3be45.tar.xz android_bootable_recovery-a1e3d67bd7fca7228780752872ca482589c3be45.tar.zst android_bootable_recovery-a1e3d67bd7fca7228780752872ca482589c3be45.zip |
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Android.bp | 1 | ||||
-rw-r--r-- | tests/component/updater_test.cpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/tests/Android.bp b/tests/Android.bp index dc20f3326..ab4d31da2 100644 --- a/tests/Android.bp +++ b/tests/Android.bp @@ -56,7 +56,6 @@ libapplypatch_static_libs = [ "libedify", "libimgdiff", "libimgpatch", - "libotafault", "libotautil", "libbsdiff", "libbspatch", diff --git a/tests/component/updater_test.cpp b/tests/component/updater_test.cpp index c4f3176f9..b253abccf 100644 --- a/tests/component/updater_test.cpp +++ b/tests/component/updater_test.cpp @@ -272,7 +272,7 @@ TEST_F(UpdaterTest, file_getprop) { expect(nullptr, "file_getprop(\"arg1\", \"arg2\", \"arg3\")", kArgsParsingFailure); // File doesn't exist. - expect(nullptr, "file_getprop(\"/doesntexist\", \"key1\")", kFileGetPropFailure); + expect(nullptr, "file_getprop(\"/doesntexist\", \"key1\")", kFreadFailure); // Reject too large files (current limit = 65536). TemporaryFile temp_file1; |