Leah McNutt | c9c9cde | 2016-10-07 16:53:52 +0000 | [diff] [blame] | 1 | *** Settings *** |
Gunnar Mills | 917ba1a | 2018-04-08 16:42:12 -0500 | [diff] [blame] | 2 | Documentation This file includes all the variables used by obmc_boot_test.robot |
Leah McNutt | c9c9cde | 2016-10-07 16:53:52 +0000 | [diff] [blame] | 3 | |
| 4 | *** Variables *** |
| 5 | # Alias of the master connection to the BMC |
| 6 | ${master_alias} master |
| 7 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 8 | # The count of the boot we're currently doing - used in the FOR loop. |
| 9 | ${BOOT_COUNT} ${0} |
Leah McNutt | c9c9cde | 2016-10-07 16:53:52 +0000 | [diff] [blame] | 10 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 11 | # The status of the last boots that finished |
| 12 | ${BOOT_STATUS} ${EMPTY} |
Leah McNutt | c9c9cde | 2016-10-07 16:53:52 +0000 | [diff] [blame] | 13 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 14 | # A list of the last 10 boots that have been performed (see Log Last Ten) |
Leah McNutt | c9c9cde | 2016-10-07 16:53:52 +0000 | [diff] [blame] | 15 | @{LAST_TEN} |
| 16 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 17 | # A list of keywords of valid boots that can be performed |
Leah McNutt | c9c9cde | 2016-10-07 16:53:52 +0000 | [diff] [blame] | 18 | @{VALID_POWER_ON} BMC Power On |
| 19 | @{VALID_POWER_OFF} BMC Power Off |
| 20 | #@{VALID_ACCYCLE} |
| 21 | #@{VALID_REBOOT} |
| 22 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 23 | # The master list of all boots possible, for reference. (Currently not in use). |
| 24 | @{MASTER_BOOT_LIST} BMC Power On BMC Power Off |
Leah McNutt | c9c9cde | 2016-10-07 16:53:52 +0000 | [diff] [blame] | 25 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 26 | # The list of available boots - Modifying this will limit what boots can be done. |
Leah McNutt | c9c9cde | 2016-10-07 16:53:52 +0000 | [diff] [blame] | 27 | # This list is also used by: Setup Run Table, Log Run Table |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 28 | @{AVAIL_BOOTS} BMC Power On BMC Power Off |