Lines Matching full:record

23 Verify Get SDR For Maximum Record Via IPMI
24 [Documentation] Verify Get SDR for each and every record one by one via IPMI lanplus.
27 # Gets the Total Record Count from SDR Info and the last Record entry number.
28 ${record_count} ${last_record}= Get Record Count And Last Record From SDR
30 # Validate each and every record till the last record.
31 FOR ${record} IN RANGE 0 ${record_count}
32 # Convert number to hexadecimal record ID.
33 ${recordhex}= Convert To Hex ${record} length=4 lowercase=yes
42 # If the record ID reaches the last data available, the next record ID will be ff ff.
43 # eg, If total record ID available is 115, record IDs : 0 - 114,
44 # Then when record ID reaches last record ID (i.e 114 (decimal) - 72h),
48 IF '${record}' != '${last_record}'
49 # current record ID in response data.
53 # Next record ID in response data.
54 ${record_next}= Evaluate ${record} + 1
61 # Next record ID in response data.
65 # current record ID in response data.
91 # Get sdr oem record count from "sdr elist -vvv" command output.
212 Verify Reserve Device SDR Repository For Partial Record
214 ... to fetch partial record from Get Device SDR.
225 # Record data starts from ${resp[2]}.
231 Verify Reserve Device SDR Repository For Partial Record After BMC Reboot
233 ... is accessible after bmc reboot to fetch partial record from Get Device SDR.
254 Verify Reserve Device SDR Repository Invalid Reservation ID For Partial Record
256 ... is accessible to fetch partial record from Get Device SDR.
273 Verify Get Device SDR For Maximum Record Via IPMI
274 [Documentation] Verify Get Device SDR for each and every Record Via IPMI Inband.
277 # Gets the Total Record Count from SDR Info and the last Record entry number.
278 ${record_count} ${last_record}= Get Record Count And Last Record From SDR
280 # Validate each and every record till the last record.
281 FOR ${record} IN RANGE 0 ${record_count}
282 # Convert number to hexadecimal record ID.
283 ${recordhex}= Convert To Hex ${record} length=4 lowercase=yes
292 # If the record ID reaches the last data available, the next record ID will be ff ff
293 # eg, If total record ID available is 115, record IDs : 0 - 114,
294 # Then when record ID reaches last record ID (i.e 114 (in decimal) - 72h),
298 IF '${record}' != '${last_record}'
299 # current record ID in response data.
303 # Next record ID in response data.
304 ${record_next}= Evaluate ${record} + 1
312 # Next record ID in response data.
316 # current record ID in response data.
321 # Response data count - total record ID (max - FFh - 255 in decimal).
473 # Record Count : 58
495 Get Record Count And Last Record From SDR
496 [Documentation] Returns total record count from IPMI SDR Info and last SDR record.
498 # Returns Record count from IPMI SDR Info.
499 ${record_count}= Get IPMI SDR Status Info Record Count
501 # Identifies Last record ID.
502 # If Record Count = 58 (3Ah), record IDs range from 0 to 57.
503 # Then Last record ID will be 57 (in decimal) - 39h.