diff options
author | JohnKeeney <john.keeney@est.tech> | 2022-05-24 12:34:49 +0100 |
---|---|---|
committer | JohnKeeney <john.keeney@est.tech> | 2022-05-25 16:26:44 +0100 |
commit | 08486cf3a7972219c3d017d5e47a2c802b225794 (patch) | |
tree | 871ede7b291e9d7b94544fd091a29d8494a9ef9e /csit/tests/healthcheck/test3.robot | |
parent | ca9a543e882c0fa891230d72311d5f7631d099bc (diff) |
Attempt to get stdout&stderr for CSIT tests
Also small tweak for RTD documentation
Issue-ID: CCSDK-3675
Change-Id: Idd8acca0e07dc45c6f76a78a321b1075f3ee31ef
Signed-off-by: JohnKeeney <john.keeney@est.tech>
Diffstat (limited to 'csit/tests/healthcheck/test3.robot')
-rw-r--r-- | csit/tests/healthcheck/test3.robot | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/csit/tests/healthcheck/test3.robot b/csit/tests/healthcheck/test3.robot index f735df05..f2687572 100644 --- a/csit/tests/healthcheck/test3.robot +++ b/csit/tests/healthcheck/test3.robot @@ -4,13 +4,16 @@ Library Process *** Variables *** -${pms_a1sim_sdnc} ${SCRIPTS}/healthcheck/test/pms_a1sim_sdnc.sh - +${pms_a1sim_sdnc} ${SCRIPTS}/healthcheck/test/pms_a1sim_sdnc.sh +${test3_stdout} ${OUTPUT_DIR}/test3_pms_a1sim_sdnc_STDOUT.sh.log +${test3_stderr} ${OUTPUT_DIR}/test3_pms_a1sim_sdnc_STDERR.sh.log *** Test Cases *** Health check test case for NONRTRIC - [Documentation] Deploy NONRTRIC with SDNC - ${cli_cmd_output}= Run Process ${pms_a1sim_sdnc} - Log ${cli_cmd_output.stdout} + [Documentation] Deploy NONRTRIC with SDNC - Test 3 + Log Variables + ${cli_cmd_output}= Run Process ${pms_a1sim_sdnc} shell=no stdout=${test3_stdout} stderr=${test3_stderr} + Log Many Standard output: ${test3_stdout} ${\n} ${cli_cmd_output.stdout} + Log Many Standard error: ${test3_stderr} ${\n} ${cli_cmd_output.stderr} Should Be Equal as Integers ${cli_cmd_output.rc} 0 |