Leah McNutt | c9c9cde | 2016-10-07 16:53:52 +0000 | [diff] [blame^] | 1 | *** Settings *** |
| 2 | Documentation This module contains keywords within tests/obmc_boot_test that |
| 3 | ... are points at which to call plug-ins. |
| 4 | |
| 5 | Resource obmc_driver_vars.txt |
| 6 | |
| 7 | *** Keywords *** |
| 8 | Call Point Setup |
| 9 | [Documentation] Call any plugins that have a cp_setup program |
| 10 | [Teardown] Log to Console **Plugin** end call point: cp_setup${\n} |
| 11 | |
| 12 | Log to Console ${\n}**Plugin** start call point: cp_setup |
| 13 | |
| 14 | Call Point Pre Boot |
| 15 | [Documentation] Call any plugins that have a cp_pre_boot program |
| 16 | [Teardown] Log to Console **Plugin** end call point: cp_pre_boot${\n} |
| 17 | |
| 18 | Log to Console ${\n}**Plugin** start call point: cp_pre_boot |
| 19 | |
| 20 | Call Point Post Boot |
| 21 | [Documentation] Call any plugins that have a cp_post_boot program |
| 22 | [Teardown] Log to Console **Plugin** end call point: cp_post_boot${\n} |
| 23 | |
| 24 | Log to Console ${\n}**Plugin** start call point: cp_post_boot |
| 25 | |
| 26 | Call Point FFDC |
| 27 | [Documentation] Call any plugins that have a cp_ffdc program |
| 28 | [Teardown] Log to Console **Plugin** end call point: cp_ffdc${\n} |
| 29 | |
| 30 | Log to Console ${\n}**Plugin** start call point: cp_ffdc |
| 31 | |
| 32 | Call Point Stop Check |
| 33 | [Documentation] Call any plugins that have a cp_stop_check program |
| 34 | [Teardown] Log to Console **Plugin** end call point: cp_stop_check${\n} |
| 35 | |
| 36 | Log to Console ${\n}**Plugin** start call point: cp_stop_check |