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

Commit 571d3eed authored by Yuexi Ma's avatar Yuexi Ma
Browse files

specify binder dervice name and bits for tv input hal test

Test: ENABLE_TREBLE=true make vts BUILD_GOOGLE_VTS=true -j32 && vts-tradefed run commandAndExit vts --skip-all-system-status-check --skip-preconditions --module TvInputHidlTest -l INFO
Change-Id: I3277bec0a616eff2e839da92cca1e557ea1c742c
parent 0069a382
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -39,13 +39,14 @@ class TvInputHidlTest(base_test_with_webdb.BaseTestWithWebDbClass):
                                 target_version=1.0,
                                 target_package="android.hardware.tv.input",
                                 target_component_name="ITvInput",
                                 bits=64)
                                 hw_binder_service_name="tv-input-1-0",
                                 bits=64 if self.dut.is64Bit else 32)

        self.dut.shell.InvokeTerminal("one")

    def testGetStreamConfigurations(self):
        configs = self.dut.hal.tv_input.getStreamConfigurations(0)
        logging.info('tv input configs: %s', configs)
        logging.info('return value of getStreamConfigurations(0): %s', configs)


if __name__ == "__main__":