mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
10 lines
229 B
Bash
Executable File
10 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
|
|
trap 'kill -TERM $REQ_PID; kill -TERM $REP_PID; wait $REQ_PID; wait $REP_PID;' TERM
|
|
@CMAKE_BINARY_DIR@/bin/test-fairmq-req &
|
|
REQ_PID=$!
|
|
@CMAKE_BINARY_DIR@/bin/test-fairmq-rep &
|
|
REP_PID=$!
|
|
wait $REQ_PID
|
|
wait $REP_PID
|