blob: 4b80a4f3961fda5e1a86d3a6acc1dfc9e3d6c525 [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
George Keishing767900d2024-06-26 23:26:31 +053012*** Keywords ***
George Keishinga25396c2017-10-24 05:35:46 -050013
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