Home | History | Annotate | Download | only in site_utils

Lines Matching full:board

24     """Raised when a board is not available in the lab."""
30 def __init__(self, board, pool, num_available, num_required, hosts):
35 @param board: Name of board.
39 @param hosts: Sequence of Host instances for given board and pool.
41 self.board = board
54 ' board={this.board!r},'
67 'Not enough DUTs for board: {this.board}, pool: {this.pool};'
224 def diagnose_pool(self, board, pool, time_delta_hours, limit=10):
225 """Log diagnostic information about a timeout for a board/pool.
227 @param board: The board for which the current suite was run.
242 board=board, pool=pool)
244 logging.error('No hosts found for board:%s in pool:%s',
245 board, pool)
284 def check_dut_availability(self, board, pool, minimum_duts=0, skip_duts_check=False):
285 """Check if DUT availability for a given board and pool is less than
288 @param board: The board to check DUT availability.
297 board/pool.
306 multiple_labels=('pool:%s' % pool, 'board:%s' % board))
309 'No hosts found for board:%s in pool:%s. The test lab '
310 'currently does not cover test for this board and pool.'%
311 (board, pool))
321 ' available DUTS', board, pool, len(hosts),
328 logging.debug('%d of %d DUTs are available for board %s pool %s.',
329 available_hosts, len(hosts), board, pool)
332 board=board,