Skip to content
Snippets Groups Projects
Commit cd188c2e authored by Jan Rinze Peterzon's avatar Jan Rinze Peterzon
Browse files

Task #8571: minor fix for t_RPC.run.

parent c7a1943f
No related branches found
No related tags found
No related merge requests found
...@@ -2608,6 +2608,7 @@ LCS/Messaging/python/messaging/messagebus.py -text ...@@ -2608,6 +2608,7 @@ LCS/Messaging/python/messaging/messagebus.py -text
LCS/Messaging/python/messaging/messages.py -text LCS/Messaging/python/messaging/messages.py -text
LCS/Messaging/python/messaging/test/CMakeLists.txt -text LCS/Messaging/python/messaging/test/CMakeLists.txt -text
LCS/Messaging/python/messaging/test/t_RPC.py -text LCS/Messaging/python/messaging/test/t_RPC.py -text
LCS/Messaging/python/messaging/test/t_RPC.run -text
LCS/Messaging/python/messaging/test/t_RPC.sh -text LCS/Messaging/python/messaging/test/t_RPC.sh -text
LCS/Messaging/python/messaging/test/t_messagebus.py -text LCS/Messaging/python/messaging/test/t_messagebus.py -text
LCS/Messaging/python/messaging/test/t_messagebus.run -text LCS/Messaging/python/messaging/test/t_messagebus.run -text
......
#!/bin/sh -e
#cleanup on normal exit and on SIGHUP, SIGINT, SIGQUIT, and SIGTERM
trap 'qpid-config del queue --force $queue' 0 1 2 3 15
# Generate randome queue name
queue=$(< /dev/urandom tr -dc [:alnum:] | head -c16)
# Create the queue
qpid-config add exchange topic $queue
# Run the unit test
python t_RPC.py $queue
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