Skip to content

Commit 084f58e

Browse files
committed
tests: document why using os.kill to send signal
1 parent f9a8375 commit 084f58e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/atest/stopping.robot

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,6 @@ Skip On Windows
3939

4040
Send Signal To Remote Server
4141
[Arguments] ${signal}
42-
${process pid}= Run Keyword ${TEST NAME}.get_pid
43-
Evaluate os.kill(${process pid}, signal.${signal}) os,signal
42+
[Documentation] Send signal to server, not to possible wrapper (e.g. jython) running it.
43+
${pid}= Run Keyword ${TEST NAME}.Get PID
44+
Evaluate os.kill(${pid}, signal.${signal}) os,signal

0 commit comments

Comments
 (0)