Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ca9b390 authored by Yifan Hong's avatar Yifan Hong Committed by android-build-merger
Browse files

Merge "fs_mgr: liblp test: give ownership of environment to gtest" am:...

Merge "fs_mgr: liblp test: give ownership of environment to gtest" am: 08c6d1a5 am: 6a4c7385 am: 1d485759
am: e4c5edf5

Change-Id: I238393e61575c5e271b0d13f38c13edf40a0c123
parents 13239f7d e4c5edf5
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -31,8 +31,7 @@ class Environment : public ::testing::Environment {
};

int main(int argc, char** argv) {
    std::unique_ptr<Environment> env(new Environment);
    ::testing::AddGlobalTestEnvironment(env.get());
    ::testing::AddGlobalTestEnvironment(new Environment);
    ::testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}