blob: fea86c3d6657a90806556641d08a98c2c2102aa8 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001*** Settings ***
2Library OperatingSystem
3Library Process
4
5*** Variables ***
6
Lasse Kaihlavirtaf02c14d2020-10-22 17:26:58 +03007${health_check} ${SCRIPTS}/ccsdk/healthcheck/health_check.sh
Gary Wu9abb61c2018-09-27 10:38:50 -07008
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