blob: bc9ec597bac08d35c139f7882ac38a9f2d06564f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
*** Settings ***
Library OperatingSystem
Library Process
*** Variables ***
${health_check} ${SCRIPTS}/healthcheck/test/health_check.sh
*** Test Cases ***
Health check test case for NONRTRIC
[Documentation] Health check
Start Process ${health_check} shell=yes
${cli_cmd_output}= Wait For Process timeout=600
Log ${cli_cmd_output.stdout}
Should Be Equal as Integers ${cli_cmd_output.rc} 0
|