blob: be396287cf3f0a4fc8dcc2c4ea26bbc2db860038 [file] [log] [blame]
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +02001*** Settings ***
2Library OperatingSystem
3Library Process
4
5*** Test Cases ***
6
7Functional 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