BjornMagnussonXA | 52bcf1e | 2020-09-07 14:06:35 +0200 | [diff] [blame^] | 1 | *** Settings *** |
| 2 | Library OperatingSystem |
| 3 | Library Process |
| 4 | |
| 5 | *** Test Cases *** |
| 6 | |
| 7 | Functional Test Case 1 |
| 8 | [Documentation] Functional Test Case 1 - FTC1 |
| 9 | Start Process ${AUTOTEST_ROOT}/FTC1.sh remote auto-clean shell=true cwd=${AUTOTEST_ROOT} |
| 10 | ${cli_cmd_output}= Wait For Process timeout=3600 |
| 11 | Should Be Equal as Integers ${cli_cmd_output.rc} 0 |
| 12 | ${ResultFileContent}= Get File ${AUTOTEST_ROOT}/.resultFTC1.txt |
| 13 | Should Be Equal As Integers ${ResultFileContent} 0 |
| 14 | |
| 15 | |
| 16 | |