diff options
Diffstat (limited to 'test/csit/tests/appc/healthcheck/APPC_Netstat.robot')
-rw-r--r-- | test/csit/tests/appc/healthcheck/APPC_Netstat.robot | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/csit/tests/appc/healthcheck/APPC_Netstat.robot b/test/csit/tests/appc/healthcheck/APPC_Netstat.robot new file mode 100644 index 000000000..285fc3727 --- /dev/null +++ b/test/csit/tests/appc/healthcheck/APPC_Netstat.robot @@ -0,0 +1,8 @@ +*** Settings *** +Library OperatingSystem + +*** Test Cases *** +APPC Netstat + [Documentation] Checking the active ports + ${output}= Run netstat -a | grep -E 8282 | grep LISTEN + Log To Console ${output} |