blob: 9a61f3c89ff9ebeb15b062c5acffef556f479d60 (
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_master.yaml "$@"
|