diff options
author | Tianjie Xu <xunchang@google.com> | 2017-03-23 01:20:51 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-03-23 01:20:53 +0100 |
commit | 1ea869b0c6b6287989f98ed16103a246fe9ae64a (patch) | |
tree | d66338f891ad8b440a36e781988fae89cca1da7f /tests/component/updater_test.cpp | |
parent | Merge "Fix the permission of stashed blocks created by updater" (diff) | |
parent | Remove malloc in edify functions (diff) | |
download | android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.gz android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.bz2 android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.lz android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.xz android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.tar.zst android_bootable_recovery-1ea869b0c6b6287989f98ed16103a246fe9ae64a.zip |
Diffstat (limited to 'tests/component/updater_test.cpp')
-rw-r--r-- | tests/component/updater_test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/component/updater_test.cpp b/tests/component/updater_test.cpp index 4f8349e2f..ef121a973 100644 --- a/tests/component/updater_test.cpp +++ b/tests/component/updater_test.cpp @@ -19,6 +19,7 @@ #include <sys/types.h> #include <unistd.h> +#include <memory> #include <string> #include <vector> @@ -46,7 +47,7 @@ struct selabel_handle *sehandle = nullptr; static void expect(const char* expected, const char* expr_str, CauseCode cause_code, UpdaterInfo* info = nullptr) { - Expr* e; + std::unique_ptr<Expr> e; int error_count = 0; ASSERT_EQ(0, parse_string(expr_str, &e, &error_count)); ASSERT_EQ(0, error_count); |