-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
*** Settings *** | ||
Library OperatingSystem | ||
Library Process | ||
|
||
Suite Setup Run TestDataTable | ||
|
||
*** Variables *** | ||
${TDT_portno} 1080 | ||
${TDT_pyfile} ${EXECDIR}${/}testdatatable${/}TestDataTable.py | ||
${TDT_cmd} python3 ${TDT_pyfile} | ||
${TDT_process} None | ||
|
||
*** Keywords *** | ||
|
||
Run TestDataTable | ||
[Arguments] ${options}=None | ||
IF ${options} == None | ||
${options}= Create List | ||
END | ||
Append To List ${options} -p ${TDT_portno} | ||
Log to console ${\n}\${options}: ${options} | ||
# ${process}= Start Process python3 ${pyfile_agent} @{options} alias=Agent stdout=${OUTPUT DIR}${/}stdout_agent.txt stderr=${OUTPUT DIR}${/}stderr_agent.txt | ||
${process}= Start Process ${TDT_cmd} @{options} alias=TDT stdout=${OUTPUT DIR}${/}stdout_TDT.txt stderr=${OUTPUT DIR}${/}stderr_TDT.txt | ||
Set Test Variable $TDT_process ${process} |