mirror of
https://salsa.debian.org/ha-team/libqb
synced 2026-01-01 03:29:01 +00:00
Miscellaneous fixes and cleanups to get 'make distcheck' to work on most platforms. Signed-off-by: Christine Caulfield <ccaulfie@redhat.com>
12 lines
352 B
Bash
Executable File
12 lines
352 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# Generate a unique(ish) name for the IPCs we will use in the tests and
|
|
# save it in a file for all of the tests to use. This way we know for sure
|
|
# which sockets are our and which we can ignore.
|
|
# The test programs all add "qb-test-<name>-" to the front of this.
|
|
#
|
|
NAME="$$-`date +%N`"
|
|
echo -n "$NAME" > ipc-test-name
|
|
mkdir -p $SOCKETDIR
|