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

Commit 745a306f authored by nelsonli's avatar nelsonli
Browse files

[vts-core] Add vts_core_meminfo_test to vts-core

Add vts_core_meminfo_test to vts-core suite and transfer to test it
by using base GTest.

Bug: 132702215
Test: atest vts_core_meminfo_test
Change-Id: Ia7924179cde0b79a6787b3533259ea8e90594585
parent 3edff134
Loading
Loading
Loading
Loading
+15 −2
Original line number Diff line number Diff line
@@ -12,9 +12,22 @@
// See the License for the specific language governing permissions and
// limitations under the License.

cc_test {
    name: "vts_meminfo_test",
cc_defaults {
    name: "vts_meminfo_defaults",
    defaults: ["libmeminfo_defaults"],
    srcs: ["vts_meminfo_test.cpp"],
    static_libs: ["libmeminfo"],
}

cc_test {
    name: "vts_meminfo_test",
    defaults: ["vts_meminfo_defaults"],
}

cc_test {
    name: "vts_core_meminfo_test",
    defaults: ["vts_meminfo_defaults"],
    test_suites: ["vts-core"],
    auto_gen_config: true,
    test_min_api_level: 29,
}