fea86c3d6657a90806556641d08a98c2c2102aa8
[integration/csit.git] / tests / ccsdk / healthcheck / test1.robot
1 *** Settings ***
2 Library           OperatingSystem
3 Library           Process
4
5 *** Variables ***
6
7 ${health_check}    ${SCRIPTS}/ccsdk/healthcheck/health_check.sh
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