Skip to content

Commit 3cc5bda

Browse files
stephanosionashif
authored andcommitted
cmake: Support renode 1.8.2.
Renode 1.8 introduced a behaviour change in which it automatically launches the telnet monitor on the TCP port 1234 by default. In order to prevent sanitycheck failures from multiple renode instances attempting to listen on the TCP port 1234 simultaneously, this commit disables renode telnet monitor by specifying '--port -2' (a negative number lower than -1 is required to disable telnet monitor because of the way renode command line parser is implemented). Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 138be8e commit 3cc5bda

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cmake/emu/renode.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ find_program(
77

88
set(RENODE_FLAGS
99
--disable-xwt
10+
--port -2
1011
--pid-file renode.pid
1112
)
1213

0 commit comments

Comments
 (0)