Lines Matching refs:board
2 # Initialize the board. The function is executed before any test.
4 proc __boardname___init { board } { argument
5 set hostname [board_info $board hostname]
6 set timeout [board_info $board timeout]
7 set ssh_options [board_info $board ssh,options]
8 set runtimes [board_info $board runtimes]
9 set tmpdir [board_info $board tmpdir]
20 set board "__boardname__"
21 set hostname [board_info $board hostname]
22 set ssh_options [board_info $board ssh,options]
23 set tmpdir [board_info $board tmpdir]
26 verbose -log "Cleaning up - executing on board 'rm -fr $tmpdir' ..." 1
32 # Upload a file to the board. Uses scp over persistent SSH connection.
34 proc __boardname___download { board file args } {
35 set hostname [board_info $board hostname]
36 set tmpdir [board_info $board tmpdir]
37 set timeout [board_info $board timeout]
38 set ssh_options [board_info $board ssh,options]
46 verbose -log "uploaded \"$file\' to remote board@\'$tmpdir/$destfile\'"
54 proc __boardname___upload { board file args } {
55 set hostname [board_info $board hostname]
56 set tmpdir [board_info $board tmpdir]
57 set timeout [board_info $board timeout]
58 set ssh_options [board_info $board ssh,options]
92 proc __boardname___exec { board program args } {
115 set timeout [board_info $board timeout]
118 set hostname [board_info $board hostname]
119 set tmpdir [board_info $board tmpdir]
141 set ssh_options [board_info $board ssh,options]
157 set upv [${board}_upload $board $other_file ""]