1*c9c9cdeaSLeah McNutt*** Settings ***
2*c9c9cdeaSLeah McNuttDocumentation  This file includes all the varaibles used by obmc_boot_test.robot
3*c9c9cdeaSLeah McNutt
4*c9c9cdeaSLeah McNutt*** Variables ***
5*c9c9cdeaSLeah McNutt# Alias of the master connection to the BMC
6*c9c9cdeaSLeah McNutt${master_alias}  master
7*c9c9cdeaSLeah McNutt
8*c9c9cdeaSLeah McNutt# The count of the IPL we're currently doing - used in the FOR loop
9*c9c9cdeaSLeah McNutt${IPL_COUNT}  ${0}
10*c9c9cdeaSLeah McNutt
11*c9c9cdeaSLeah McNutt# The total number of IPLs we plan on doing
12*c9c9cdeaSLeah McNutt${IPL_TOTAL}  ${3}
13*c9c9cdeaSLeah McNutt
14*c9c9cdeaSLeah McNutt# The total number of IPLs that have passed and failed
15*c9c9cdeaSLeah McNutt${IPL_PASSED}  ${0}
16*c9c9cdeaSLeah McNutt${IPL_FAILED}  ${0}
17*c9c9cdeaSLeah McNutt
18*c9c9cdeaSLeah McNutt# The status of the last IPL that finished
19*c9c9cdeaSLeah McNutt${IPL_STATUS}  ${EMPTY}
20*c9c9cdeaSLeah McNutt
21*c9c9cdeaSLeah McNutt# A list of the last 10 IPLs that have been performed (see Log Last Ten)
22*c9c9cdeaSLeah McNutt@{LAST_TEN}
23*c9c9cdeaSLeah McNutt
24*c9c9cdeaSLeah McNutt# A list of keywords of valid IPLs that can be performed
25*c9c9cdeaSLeah McNutt@{VALID_POWER_ON}  BMC Power On
26*c9c9cdeaSLeah McNutt@{VALID_POWER_OFF}  BMC Power Off
27*c9c9cdeaSLeah McNutt#@{VALID_ACCYCLE}
28*c9c9cdeaSLeah McNutt#@{VALID_REBOOT}
29*c9c9cdeaSLeah McNutt
30*c9c9cdeaSLeah McNutt# The master list of all IPLs possible, for reference. (Currently not in use).
31*c9c9cdeaSLeah McNutt@{MASTER_IPL_LIST}  BMC Power On  BMC Power Off
32*c9c9cdeaSLeah McNutt
33*c9c9cdeaSLeah McNutt# The list of available IPLs - Modifying this will limit what IPLs can be done.
34*c9c9cdeaSLeah McNutt# This list is also used by: Setup Run Table, Log Run Table
35*c9c9cdeaSLeah McNutt@{AVAIL_IPLS}  BMC Power On  BMC Power Off
36