blob: 8f805c4c4e60490830e8eaf641262beb7aace000 [file] [log] [blame]
Chris Austenb29d2e82016-06-07 12:25:35 -05001*** Settings ***
2Documentation This example demonstrates executing commands on a remote machine
3... and getting their output and the return code.
4...
5... Notice how connections are handled as part of the suite setup and
6... teardown. This saves some time when executing several test cases.
7
8Resource ../lib/rest_client.robot
9Resource ../lib/ipmi_client.robot
George Keishingd55a4be2016-08-26 03:28:17 -050010Resource ../lib/openbmc_ffdc.robot
Chris Austenb29d2e82016-06-07 12:25:35 -050011Library ../data/model.py
12
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -050013Suite setup Setup The Suite
Chris Austenb29d2e82016-06-07 12:25:35 -050014Suite Teardown Close All Connections
Gunnar Millseac1af22016-11-14 15:30:09 -060015Test Teardown FFDC On Test Case Fail
Chris Austenb29d2e82016-06-07 12:25:35 -050016
17
18*** Variables ***
Gunnar Mills1cd544d2016-12-06 11:19:22 -060019${model}= ${OPENBMC_MODEL}
Chris Austenb29d2e82016-06-07 12:25:35 -050020
21*** Test Cases ***
22Verify connection
23 Execute new Command echo "hello"
24 Response Should Be Equal "hello"
25
26Execute ipmi BT capabilities command
George Keishingcac24c72016-09-23 04:44:19 -050027 [Tags] Execute_ipmi_BT_capabilities_command
Chris Austenb29d2e82016-06-07 12:25:35 -050028 Run IPMI command 0x06 0x36
29 response Should Be Equal " 01 40 40 0a 01"
30
Sridevi Ramesh83f5c592017-01-20 04:35:13 -060031Execute Set Sensor Boot Count
32 [Tags] Execute_Set_Sensor_Boot_Count
33
Gunnar Mills1cd544d2016-12-06 11:19:22 -060034 ${uri}= Get System component BootCount
35 ${x}= Get Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -050036
37 Run IPMI command 0x04 0x30 ${x} 0x01 0x00 0x35 0x00 0x00 0x00 0x00 0x00 0x00
38 Read the Attribute ${uri} value
Gunnar Mills1cd544d2016-12-06 11:19:22 -060039 ${val}= convert to integer 53
Chris Austenb29d2e82016-06-07 12:25:35 -050040 Response Should Be Equal ${val}
41
Sridevi Ramesh83f5c592017-01-20 04:35:13 -060042Set Sensor Boot Progress
43 [Tags] Set_Sensor_Boot_Progress
44
Gunnar Mills1cd544d2016-12-06 11:19:22 -060045 ${uri}= Get System component BootProgress
46 ${x}= Get Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -050047
48 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x04 0x00 0x00 0x00 0x00 0x14 0x00
49 Read the Attribute ${uri} value
50 Response Should Be Equal FW Progress, Baseboard Init
51
Sridevi Ramesh83f5c592017-01-20 04:35:13 -060052Set Sensor Boot Progress Longest String
53 [Tags] Set_Sensor_Boot_Progress_Longest_String
Gunnar Mills1cd544d2016-12-06 11:19:22 -060054 ${uri}= Get System component BootProgress
55 ${x}= Get Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -050056
57 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x04 0x00 0x00 0x00 0x00 0x0e 0x00
58 Read The Attribute ${uri} value
59 Response Should Be Equal FW Progress, Docking station attachment
60
Sridevi Ramesh83f5c592017-01-20 04:35:13 -060061Boot Progress Sensor FW Hang Unspecified Error
62 [Tags] Boot_Progress_Sensor_FW_Hang_Unspecified_Error
63
Gunnar Mills1cd544d2016-12-06 11:19:22 -060064 ${uri}= Get System component BootProgress
65 ${x}= Get Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -050066
67 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x02 0x00 0x00 0x00 0x00 0x00 0x00
68 Read The Attribute ${uri} value
69 Response Should Be Equal FW Hang, Unspecified
70
Sridevi Ramesh83f5c592017-01-20 04:35:13 -060071Boot Progress FW Hang State
72 [Tags] Boot_Progress_FW_Hang_State
73
Gunnar Mills1cd544d2016-12-06 11:19:22 -060074 ${uri}= Get System component BootProgress
75 ${x}= Get Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -050076
77 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x01 0x00 0x00 0x00 0x00 0x20 0x00
78 Read The Attribute ${uri} value
79 Response Should Be Equal POST Error, unknown
80
Sridevi Ramesh83f5c592017-01-20 04:35:13 -060081OS Status Sensor Boot Completed Progress
82 [Tags] OS_Status_Sensor_Boot_Completed_Progress
83
Gunnar Mills1cd544d2016-12-06 11:19:22 -060084 ${uri}= Get System component OperatingSystemStatus
85 ${x}= Get Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -050086
87 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x20 0x00
88 Read The Attribute ${uri} value
89 Response Should Be Equal Boot completed (00)
90
Sridevi Ramesh83f5c592017-01-20 04:35:13 -060091OS Status Sensor Progress
92 [Tags] OS_Status_Sensor_Progress
93
Gunnar Mills1cd544d2016-12-06 11:19:22 -060094 ${uri}= Get System component OperatingSystemStatus
95 ${x}= Get Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -050096
97 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x04 0x00 0x00 0x00 0x00 0x20 0x00
98 Read The Attribute ${uri} value
99 Response Should Be Equal PXE boot completed
100
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600101OCC Active Sensor On Enabled
102 [Tags] OCC_Active_Sensor_On_Enabled
103
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600104 ${uri}= Get System component OccStatus
105 ${x}= Get Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500106
107 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x20 0x00
108 Read The Attribute ${uri} value
109 Response Should Be Equal Enabled
110
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600111OCC Active Sensor On Disabled
112 [Tags] OCC_Active_Sensor_On_Disabled
113
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600114 ${uri}= Get System component OccStatus
115 ${x}= Get Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500116
117 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x01 0x00 0x00 0x00 0x00 0x20 0x00
118 Read The Attribute ${uri} value
119 Response Should Be Equal Disabled
120
121CPU Present
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600122 [Tags] CPU_Present
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500123
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600124 ${uri}= Get System component cpu
125 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500126
127 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x80 0x00 0x00 0x00 0x00 0x20 0x00
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500128 Read The Attribute ${uri} present
Chris Austenb29d2e82016-06-07 12:25:35 -0500129 Response Should Be Equal True
130
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600131CPU Not Present
132 [Tags] CPU_Not_Present
133
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600134 ${uri}= Get System component cpu
135 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500136
137 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x00 0x00 0x80 0x00 0x00 0x20 0x00
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500138 Read The Attribute ${uri} present
Chris Austenb29d2e82016-06-07 12:25:35 -0500139 Response Should Be Equal False
140
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600141CPU Fault
142 [Tags] CPU_Fault
143
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600144 ${uri}= Get System component cpu
145 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500146
147 Run IPMI command 0x04 0x30 ${x} 0xa9 0xff 0x00 0x01 0x00 0x00 0x00 0x20 0x00
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500148 Read The Attribute ${uri} fault
Chris Austenb29d2e82016-06-07 12:25:35 -0500149 Response Should Be Equal True
150
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600151CPU No Fault
152 [Tags] CPU_No_Fault
153
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600154 ${uri}= Get System component cpu
155 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500156
157 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x20 0x00
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500158 Read The Attribute ${uri} fault
Chris Austenb29d2e82016-06-07 12:25:35 -0500159 Response Should Be Equal False
160
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600161Core Present
162 [Tags] Core_Present
163
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600164 ${uri}= Get System component core11
165 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500166
167 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x80 0x00 0x00 0x00 0x00 0x20 0x00
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500168 Read The Attribute ${uri} present
Chris Austenb29d2e82016-06-07 12:25:35 -0500169 Response Should Be Equal True
170
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600171Core Not Present
172 [Tags] Core_Not_Present
173
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600174 ${uri}= Get System component core11
175 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500176
177 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x00 0x00 0x80 0x00 0x00 0x20 0x00
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500178 Read The Attribute ${uri} present
Chris Austenb29d2e82016-06-07 12:25:35 -0500179 Response Should Be Equal False
180
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600181Core Fault
182 [Tags] Core_Fault
183
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600184 ${uri}= Get System component core11
185 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500186
187 Run IPMI command 0x04 0x30 ${x} 0xa9 0xff 0x00 0x01 0x00 0x00 0x00 0x20 0x00
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500188 Read The Attribute ${uri} fault
Chris Austenb29d2e82016-06-07 12:25:35 -0500189 Response Should Be Equal True
190
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600191Core No Fault
192 [Tags] Core_No_Fault
193
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600194 ${uri}= Get System component core11
195 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500196
197 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x20 0x00
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500198 Read The Attribute ${uri} fault
Chris Austenb29d2e82016-06-07 12:25:35 -0500199 Response Should Be Equal False
200
201DIMM3 Present
Rahul Maheshwaribb20f732016-10-24 06:27:14 -0500202 [Tags] DIMM3_Present
203
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600204 ${uri}= Get System component dimm3
205 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500206
207 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x40 0x00 0x00 0x00 0x00 0x20 0x00
208 Read The Attribute ${uri} present
209 Response Should Be Equal True
210
211DIMM3 not Present
Rahul Maheshwaribb20f732016-10-24 06:27:14 -0500212 [Tags] DIMM3_not_Present
213
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600214 ${uri}= Get System component dimm3
215 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500216
217 Run IPMI command 0x04 0x30 ${x} 0xa9 0xff 0x00 0x00 0x40 0x00 0x00 0x20 0x00
218 Read The Attribute ${uri} present
219 Response Should Be Equal False
220
221DIMM0 fault
Rahul Maheshwaribb20f732016-10-24 06:27:14 -0500222 [Tags] DIMM0_fault
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600223 ${uri}= Get System component dimm0
224 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500225
226 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x20 0x00
227 Read The Attribute ${uri} fault
228 Response Should Be Equal True
229
230DIMM0 no fault
Rahul Maheshwaribb20f732016-10-24 06:27:14 -0500231 [Tags] DIMM0_no_fault
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600232 ${uri}= Get System component dimm0
233 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500234
235 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x20 0x00
236 Read The Attribute ${uri} fault
237 Response Should Be Equal False
238
239Centaur0 Present
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600240 [Tags] Centaur0_Present
Rahul Maheshwarif8119102016-10-05 01:15:56 -0500241
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600242 ${uri}= Get System component membuf
243 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500244
245 Run IPMI command 0x04 0x30 ${x} 0xa9 0x00 0x40 0x00 0x00 0x00 0x00 0x20 0x00
246 Read The Attribute ${uri} present
247 Response Should Be Equal True
248
249Centaur0 not Present
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600250 [Tags] Centaur0_not_Present
Rahul Maheshwarif8119102016-10-05 01:15:56 -0500251
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600252 ${uri}= Get System component membuf
253 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500254
255 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x40 0x00 0x00 0x20 0x00
256 Read The Attribute ${uri} present
257 Response Should Be Equal False
258
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600259Centaur0 Fault
260 [Tags] Centaur0_Fault
261
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600262 ${uri}= Get System component membuf
263 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500264
265 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x10 0x00 0x00 0x00 0x00 0x20 0x00
266 Read The Attribute ${uri} fault
267 Response Should Be Equal True
268
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600269Centaur0 No Fault
270 [Tags] Centaur0_No_Fault
271
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600272 ${uri}= Get System component membuf
273 ${x}= Get Inventory Sensor Number ${uri}
Chris Austenb29d2e82016-06-07 12:25:35 -0500274
275 Run IPMI command 0x04 0x30 ${x} 0x00 0x00 0x00 0x00 0x10 0x00 0x00 0x20 0x00
276 Read The Attribute ${uri} fault
277 Response Should Be Equal False
278
279System Present
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600280 [Tags] System_Present
Rahul Maheshwarif8119102016-10-05 01:15:56 -0500281
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600282 ${uri}= Get System component system
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500283 Read The Attribute ${uri} present
Chris Austenb29d2e82016-06-07 12:25:35 -0500284 Response Should Be Equal True
Rahul Maheshwarif8119102016-10-05 01:15:56 -0500285
Chris Austenb29d2e82016-06-07 12:25:35 -0500286System Fault
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600287 [Tags] System_Fault
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600288 ${uri}= Get System component system
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500289 Read The Attribute ${uri} fault
Chris Austenb29d2e82016-06-07 12:25:35 -0500290 Response Should Be Equal False
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500291
Chris Austenb29d2e82016-06-07 12:25:35 -0500292Chassis Present
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600293 [Tags] Chassis_Present
Rahul Maheshwarif8119102016-10-05 01:15:56 -0500294
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600295 ${uri}= Get System component chassis
George Keishingab1bd922016-12-05 05:29:59 -0600296 Read The Attribute
297 ... ${INVENTORY_URI}system/chassis present
Chris Austenb29d2e82016-06-07 12:25:35 -0500298 Response Should Be Equal True
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500299
Chris Austenb29d2e82016-06-07 12:25:35 -0500300Chassis Fault
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600301 [Tags] Chassis_Fault
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600302 ${uri}= Get System component chassis
George Keishingab1bd922016-12-05 05:29:59 -0600303 Read The Attribute
304 ... ${INVENTORY_URI}system/chassis fault
Chris Austenb29d2e82016-06-07 12:25:35 -0500305 Response Should Be Equal False
Chris Austenb29d2e82016-06-07 12:25:35 -0500306
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500307io_board Present
Rahul Maheshwarif8119102016-10-05 01:15:56 -0500308 [Tags] io_board_Present
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600309 ${uri}= Get System component io_board
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500310 Read The Attribute ${uri} present
311 Response Should Be Equal True
312
313io_board Fault
Rahul Maheshwarif8119102016-10-05 01:15:56 -0500314 [Tags] io_board_Fault
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600315 ${uri}= Get System component io_board
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500316 Read The Attribute ${uri} fault
317 Response Should Be Equal False
Chris Austenb29d2e82016-06-07 12:25:35 -0500318
319*** Keywords ***
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500320
321Setup The Suite
322
323 Open Connection And Log In
George Keishingab1bd922016-12-05 05:29:59 -0600324 ${resp}= Read Properties ${OPENBMC_BASE_URI}enumerate timeout=30
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500325 Set Suite Variable ${SYSTEM_INFO} ${resp}
326 log Dictionary ${resp}
327
328Get System component
329 [Arguments] ${type}
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600330 ${list}= Get Dictionary Keys ${SYSTEM_INFO}
331 ${resp}= Get Matches ${list} regexp=^.*[0-9a-z_].${type}[0-9]*$
332 ${url}= Get From List ${resp} 0
Gunnar Millsc9ea9362016-12-13 16:21:13 -0600333 [Return] ${url}
Rahul Maheshwari4a4eb6e2016-09-24 01:06:36 -0500334
Chris Austenb29d2e82016-06-07 12:25:35 -0500335Execute new Command
Gunnar Mills38032802016-12-12 13:43:40 -0600336 [Arguments] ${args}
Chris Austenb29d2e82016-06-07 12:25:35 -0500337 ${output}= Execute Command ${args}
338 set test variable ${OUTPUT} "${output}"
339
340response Should Be Equal
Gunnar Mills38032802016-12-12 13:43:40 -0600341 [Arguments] ${args}
Chris Austenb29d2e82016-06-07 12:25:35 -0500342 Should Be Equal ${OUTPUT} ${args}
343
344Response Should Be Empty
345 Should Be Empty ${OUTPUT}
346
Gunnar Mills56b32892016-11-14 13:56:17 -0600347Read the Attribute
Gunnar Mills38032802016-12-12 13:43:40 -0600348 [Arguments] ${uri} ${parm}
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600349 ${output}= Read Attribute ${uri} ${parm}
Chris Austenb29d2e82016-06-07 12:25:35 -0500350 set test variable ${OUTPUT} ${output}
351
352Get Sensor Number
Gunnar Mills38032802016-12-12 13:43:40 -0600353 [Arguments] ${name}
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600354 ${x}= get sensor ${OPENBMC_MODEL} ${name}
Gunnar Millsc9ea9362016-12-13 16:21:13 -0600355 [Return] ${x}
Chris Austenb29d2e82016-06-07 12:25:35 -0500356
357Get Inventory Sensor Number
Gunnar Mills38032802016-12-12 13:43:40 -0600358 [Arguments] ${name}
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600359 ${x}= get inventory sensor ${OPENBMC_MODEL} ${name}
Gunnar Millsc9ea9362016-12-13 16:21:13 -0600360 [Return] ${x}