blob: 2aae2291c49a3f2bec3e651b6391bf24b78ea794 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
*** 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} >> log_hc.txt shell=yes
${cli_cmd_output}= Wait For Process timeout=600
Should Be Equal as Integers ${cli_cmd_output.rc} 0
|