diff options
author | Tianjie Xu <xunchang@google.com> | 2017-03-23 01:43:21 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-03-23 01:43:21 +0100 |
commit | eb0623b14b2935cd247e04ead6af1ef5e4618d43 (patch) | |
tree | dfb466d80dea6b61be36eaf54ae98d607f29fc83 /tests/component/edify_test.cpp | |
parent | Merge "Fix the permission of stashed blocks created by updater" am: d882b8892a (diff) | |
parent | Merge "Remove malloc in edify functions" (diff) | |
download | android_bootable_recovery-eb0623b14b2935cd247e04ead6af1ef5e4618d43.tar android_bootable_recovery-eb0623b14b2935cd247e04ead6af1ef5e4618d43.tar.gz android_bootable_recovery-eb0623b14b2935cd247e04ead6af1ef5e4618d43.tar.bz2 android_bootable_recovery-eb0623b14b2935cd247e04ead6af1ef5e4618d43.tar.lz android_bootable_recovery-eb0623b14b2935cd247e04ead6af1ef5e4618d43.tar.xz android_bootable_recovery-eb0623b14b2935cd247e04ead6af1ef5e4618d43.tar.zst android_bootable_recovery-eb0623b14b2935cd247e04ead6af1ef5e4618d43.zip |
Diffstat (limited to 'tests/component/edify_test.cpp')
-rw-r--r-- | tests/component/edify_test.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/component/edify_test.cpp b/tests/component/edify_test.cpp index 287e40cc6..61a1e6b64 100644 --- a/tests/component/edify_test.cpp +++ b/tests/component/edify_test.cpp @@ -14,6 +14,7 @@ * limitations under the License. */ +#include <memory> #include <string> #include <gtest/gtest.h> @@ -21,7 +22,7 @@ #include "edify/expr.h" static void expect(const char* expr_str, const char* expected) { - Expr* e; + std::unique_ptr<Expr> e; int error_count = 0; EXPECT_EQ(0, parse_string(expr_str, &e, &error_count)); EXPECT_EQ(0, error_count); @@ -152,7 +153,7 @@ TEST_F(EdifyTest, big_string) { TEST_F(EdifyTest, unknown_function) { // unknown function const char* script1 = "unknown_function()"; - Expr* expr; + std::unique_ptr<Expr> expr; int error_count = 0; EXPECT_EQ(1, parse_string(script1, &expr, &error_count)); EXPECT_EQ(1, error_count); |