Lines Matching full:board
35 # regex to parse the dut count from board label. Note that the regex makes sure
36 # there is only one board specified in `boards`
297 # Translate board name in build target to the actual board name.
740 def _GetCrOSBuild(self, mv, board):
749 @param board: the board against which to run self._suite.
763 board, 'release', milestone=milestone)
764 latest_build = base_event.BuildName(board, 'release', milestone,
767 board, self.cros_build_spec, latest_build)
771 def _GetFirmwareBuild(self, spec, mv, board):
777 defined in global config RELEASED_RO_BUILDS_[board].
782 @param board: the board against which to run self._suite.
796 'CROS', 'RELEASED_RO_BUILDS_%s' % board, type=str,
808 board, build_type)
809 latest_build = base_event.BuildName(board, build_type, latest_milestone,
812 board, spec, latest_build)
816 def AvailableHosts(self, scheduler, board):
817 """Query what hosts are able to run a test on a board and pool
822 @param board: the board against which one wants to run the test.
823 @return The list of hosts meeting the board and pool requirements,
825 if self._boards and board not in self._boards:
828 board_label = Labels.BOARD_PREFIX + board
851 launch_control_build, board, force, run_prod_code=False):
852 """Try to schedule a suite with given build and board information.
864 @param board: the board against which to run self._suite.
882 # and board with the dut count.
887 board = '%s-%d' % (board, self._testbed_dut_count)
894 self._suite, board, cros_build, self._pool, self._num,
906 self._suite, build_string, board)
909 def _Run_CrOS_Builds(self, scheduler, branch_builds, board, force=False,
924 @param board: the board against which to run self._suite.
931 logging.info('Running %s on %s', self._name, board)
941 cros_build = self._GetCrOSBuild(mv, board)
947 self.firmware_rw_build_spec, mv, board)
949 self.firmware_ro_build_spec, mv, board)
958 'required to run the suite.', self._name, board)
986 None, board, force)
992 def _Run_LaunchControl_Builds(self, scheduler, launch_control_builds, board,
1003 @param board: the board against which to run self._suite.
1009 logging.info('Running %s on %s', self._name, board)
1023 launch_control_build=build, board=board,
1030 def Run(self, scheduler, branch_builds, board, force=False, mv=None,
1044 @param board: the board against which to run self._suite.
1055 board)
1056 # Return True so the task will be kept, as the given build and board
1062 scheduler, branch_builds, board, force, mv)
1065 scheduler, launch_control_builds, board, force)
1072 def Run(self, scheduler, branch_builds, board, force=False, mv=None,
1085 @param board: the board against which to run self._suite.
1093 super(OneShotTask, self).Run(scheduler, branch_builds, board, force,