blob: e65928a35f3c958edaa8906af8157dc67269c487 (
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
${cli_cmd_output}= Run Process ${health_check}
Log ${cli_cmd_output.stdout}
Should Be Equal as Integers ${cli_cmd_output.rc} 0
|