]> git.ipfire.org Git - thirdparty/pdns.git/blame - regression-tests.recursor-dnssec/runtests
recursor: Add DNSSEC testing infrastructure and tests (#3741)
[thirdparty/pdns.git] / regression-tests.recursor-dnssec / runtests
CommitLineData
7568b07d
PL
1#!/bin/sh
2
3if [ ! -d .venv ]; then
4 virtualenv -p python2 .venv
5fi
6. .venv/bin/activate
7python -V
8pip install -r requirements.txt
9
10mkdir -p configs
11
12export PDNS=${PDNS:-${PWD}/../pdns/pdns_server}
13export PDNSUTIL=${PDNSUTIL:-${PWD}/../pdns/pdnsutil}
14export PDNSRECURSOR=${PDNSRECURSOR:-${PWD}/../pdns/recursordist/pdns_recursor}
15export RECCONTROL=${RECCONTROL:-${PWD}/../pdns/recursordist/rec_control}
16
17export PREFIX=10.0.3
18
19set -e
20if [ "${PDNS_DEBUG}" = "YES" ]; then
21 set -x
22fi
23nosetests -I test_WellKnown.py --with-xunit $@