Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Library OperatingSystem |
| 3 | Library Process |
| 4 | |
| 5 | *** Variables *** |
| 6 | |
Lasse Kaihlavirta | f02c14d | 2020-10-22 17:26:58 +0300 | [diff] [blame^] | 7 | ${health_check} ${SCRIPTS}/ccsdk/healthcheck/health_check.sh |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 8 | |
| 9 | |
| 10 | *** Test Cases *** |
| 11 | Health check test case for CCSDK |
| 12 | [Documentation] Health check |
| 13 | ${result_hc}= Run Process bash ${health_check} > log_hc.txt shell=yes |
| 14 | Should Be Equal As Integers ${result_hc.rc} 0 |
| 15 | |
| 16 | |