Skip to content
Snippets Groups Projects
Commit 2a4e3441 authored by Robin Mueller's avatar Robin Mueller
Browse files

service 3 tc packer init

parent 68b8d182
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,8 @@ import queue
def serviceTestSelect(service, serviceQueue):
if service == 2:
return packService2TestInto(serviceQueue)
elif service == 3:
return packService3TestInto(serviceQueue)
elif service == 5:
return packService5TestInto(serviceQueue)
elif service == 8:
......@@ -52,6 +54,10 @@ def serviceTestSelect(service, serviceQueue):
exit()
def packService3TestInto(tcQueue):
tcQueue.put(("print", "Testing Service 3"))
def packService5TestInto(tcQueue):
tcQueue.put(("print", "Testing Service 5"))
# disable events
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment