VAX: Avoid Windows Firewall prompt when running tests during build

This procedure establishes a telnet listen port solely so that the console
output traffic can be buffered (and not emitted).  Since nothing will ever
connect to this port we bound it to the localhost address so that firewall
prompts aren't generated when building in a new directory.
This commit is contained in:
Mark Pizzolato 2019-12-21 06:51:41 -08:00
parent 020bf31457
commit 76e6111dd4

View file

@ -20,7 +20,7 @@
cd %~p0 cd %~p0
set env DIAG_QUIET_MODE=0 set env DIAG_QUIET_MODE=0
if ("%1" == "-v") set console notelnet if ("%1" == "-v") set console notelnet
else set -qu console telnet=65432,telnet=buffered; set env -a DIAG_QUIET_MODE=1 else set -qu console telnet=localhost:65432,telnet=buffered; set env -a DIAG_QUIET_MODE=1
goto DIAG_%SIM_BIN_NAME% goto DIAG_%SIM_BIN_NAME%
:DIAG_MICROVAX2 :DIAG_MICROVAX2