blob: 3c81d7055c84201fd8bc4800ec86772f6d0c2f88 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001*** Settings ***
2Library OperatingSystem
3Library Process
4
5*** Variables ***
6
7${health_check} ${SCRIPTS}/health_check.sh
8
9
10*** Test Cases ***
11Health 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