blob: 239cef1f509b30c7a89738a675c412350ad59f59 (
plain)
1
2
3
4
5
6
|
#!/bin/bash
set -o errexit -o nounset
echo 'INFO: Tests require Knot compiled with ./configure --enable-recvmmsg=no'
RUNDIR="$(dirname "$0")"
cd "$RUNDIR" && ./run.sh --config configs/knotd_slave.yaml "$@"
|