No longer have to specify the Asyn Port Name

This commit is contained in:
2024-11-05 15:00:45 +01:00
parent 044a181ed0
commit fba7487f88
6 changed files with 15 additions and 16 deletions

View File

@ -9,6 +9,6 @@ epicsEnvSet("PREFIX","SQ:TEST")
epicsEnvSet("NAME","CB_TEST")
epicsEnvSet("SET_SIM_MODE","") # Run Counterbox Simulation Instead of Actual Box
runScript "$(counterbox_DIR)counterbox_v2.cmd" "ASYN_PORT=CBOXV2, CNTBOX_IP=localhost, CNTBOX_PORT=2000"
runScript "$(counterbox_DIR)counterbox_v2.cmd" "CNTBOX_IP=localhost, CNTBOX_PORT=2000"
iocInit()

View File

@ -96,7 +96,7 @@ def test(prefix, name):
line = stdqueue.get()
print(line)
if line == 'iocRun: All initialization complete':
if 'iocRun: All initialization complete' in line:
break # IOC is now running
testCanCount(prefix, name)