From f40948867294649f343737b5540ca64f02cf743c Mon Sep 17 00:00:00 2001 From: kevin-f-ortega Date: Tue, 22 Jul 2025 19:07:43 -0700 Subject: [PATCH] Added config needed to run InT scripts (#3915) --- Ref/config.json | 37 +++++++++++++++++++++++++++++++++++++ ci/tests/fputil.bash | 3 ++- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 Ref/config.json diff --git a/Ref/config.json b/Ref/config.json new file mode 100644 index 0000000000..731811a967 --- /dev/null +++ b/Ref/config.json @@ -0,0 +1,37 @@ +{ + "Drv.BlockDriver" : "Ref.blockDrv", + "Svc.ActiveRateGroup" : "Ref.rateGroup1Comp", + "Svc.CommandDispatcher" : "Ref.cmdDisp", + "Svc.CmdSequencer" : "Ref.cmdSeq", + "Svc.FileDownlink" : "Ref.fileDownlink", + "Svc.FileManager" : "Ref.fileManager", + "Svc.FileUplink" : "Ref.fileUplink", + "Ref.PingReceiver" : "Ref.pingRcvr", + "Svc.ActiveLogger" : "Ref.eventLogger", + "Svc.TlmChan" : "Ref.tlmSend", + "Svc.PrmDb" : "Ref.prmDb", + "Svc.DpCatalog" : "Ref.dpCat", + "Svc.DpManager" : "Ref.dpMgr", + "Svc.DpWriter" : "Ref.dpWriter", + "Svc.ComQueue" : "Ref.comQueue", + "Ref.TypeDemo" : "Ref.typeDemo", + "Svc.Health" : "Ref.health", + "Ref.SignalGen" : "Ref.SG1", + "Ref.SendBuff" : "Ref.sendBuffComp", + "Drv.TcpClient" : "Ref.comDriver", + "Svc.AssertFatalAdapter" : "Ref.fatalAdapter", + "Svc.FatalHandler" : "Ref.fatalHandler", + "Svc.BufferManager" : "Ref.commsBufferManager", + "Svc.PosixTime" : "Ref.posixTime", + "Svc.RateGroupDriver" : "Ref.rateGroupDriverComp", + "Ref.RecvBuff" : "Ref.recvBuffComp", + "Svc.Version" : "Ref.version", + "Svc.PassiveTextLogger" : "Ref.textLogger", + "Svc.SystemResources" : "Ref.systemResources", + "Svc.BufferManager" : "Ref.dpBufferManager", + "Svc.FrameAccumulator" : "Ref.frameAccumulator", + "Svc.FprimeDeframer" : "Ref.deframer", + "Svc.FprimeRouter" : "Ref.fprimeRouter", + "Svc.FprimeFramer" : "Ref.fprimeFramer", + "Svc.ComStub" : "Ref.comStub" +} diff --git a/ci/tests/fputil.bash b/ci/tests/fputil.bash index 5eacab49c6..6340f6abf7 100755 --- a/ci/tests/fputil.bash +++ b/ci/tests/fputil.bash @@ -107,7 +107,8 @@ function integration_test_run { then TIMEOUT="gtimeout" # macOS homebrew "coreutils" fi - ${TIMEOUT} --kill-after=10s 180s pytest ${DICTIONARY_ARGS} + TOP_CONFIG_ARGS="--deployment-config ${WORKDIR}/config.json" + ${TIMEOUT} --kill-after=10s 180s pytest ${DICTIONARY_ARGS} ${TOP_CONFIG_ARGS} ) RET_PYTEST=$? pkill -P $GDS_PID