mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 16:46:47 +00:00
10 lines
239 B
Bash
Executable File
10 lines
239 B
Bash
Executable File
#!/bin/bash
|
|
|
|
trap 'kill -TERM $PUSH_PID; kill -TERM $PULL_PID; wait $PUSH_PID; wait $PULL_PID;' TERM
|
|
@CMAKE_BINARY_DIR@/bin/test-fairmq-push &
|
|
PUSH_PID=$!
|
|
@CMAKE_BINARY_DIR@/bin/test-fairmq-pull &
|
|
PULL_PID=$!
|
|
wait $PUSH_PID
|
|
wait $PULL_PID
|