blob: af6b92086dfd64d969271b9e36303ced956c6f78 [file] [log] [blame]
George Keishinga25396c2017-10-24 05:35:46 -05001*** Settings ***
2Documentation Set metadata for test suite.
3
4Library SSHLibrary
5Resource ../lib/connection_client.robot
6Resource ../lib/rest_client.robot
7Resource ../lib/utils.robot
8Resource ../lib/code_update_utils.robot
9
10Suite Setup System Driver Data
11
12*** Keyword ***
13
14System Driver Data
15 [Documentation] System driver information.
16 Open Connection And Log In
17 Log BMC Driver Details
18 ${software}= Get Host Software Objects Details
19 Log ${software}
George Keishinga25396c2017-10-24 05:35:46 -050020 ${bmc_model}= Get BMC System Model
21 Log BMC Model=${bmc_model}
22
23Log BMC Driver Details
24 [Documentation] Get BMC driver details and log.
25
26 ${output} ${stderr}= Execute Command grep ^VERSION_ID= /etc/os-release
27 ... return_stderr=True
28 Should Be Empty ${stderr}
29 Log ${output}
30