#!/bin/bash
# Execute the given command. The intention is that it is a function
# from "${TEST_SCRIPTS_DIR}/integration.bash".
PATH="$(dirname $0):${PATH}"
f="ctdb_bench"
if [ ! $(which $f >/dev/null 2>&1) ] ; then
d=$(dirname $(dirname $0))/bin
[ -x "$d/$f" ] && PATH="$d:$PATH"
fi
. "${TEST_SCRIPTS_DIR}/integration.bash"
"$@"