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

Commit d5f85888 authored by Dan Shi's avatar Dan Shi Committed by Steven Moreland
Browse files

Convert VtsHalDrmV1_*TargetTest to be parameterized test

Removing dependency from VTS infrastructure so that test can run
standalone, for instance with atest/TEST_MAPPING. Once this is
done for every test, VTS can use the core testing infra.

Bug: 142397658
Test: atest VtsHalDrmV1_0TargetTest VtsHalDrmV1_1TargetTest \
  VtsHalDrmV1_2TargetTest
Change-Id: Ic436d949f5b26087e32c48fac220cd5abad8a443
parent b89ad206
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ cc_test {
    srcs: [
        "drm_hal_clearkey_test.cpp",
        "drm_hal_vendor_test.cpp",
        "vendor_modules.cpp"
        "vendor_modules.cpp",
    ],
    static_libs: [
        "android.hardware.drm@1.0",
@@ -32,5 +32,8 @@ cc_test {
        "libssl",
        "libcrypto_static",
    ],
    test_suites: ["general-tests"],
    test_suites: [
        "general-tests",
        "vts-core",
    ],
}
Loading