Blame bin/python/isc/tests/Makefile.in

Packit Service ae04f2
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
Packit Service ae04f2
#
Packit Service ae04f2
# This Source Code Form is subject to the terms of the Mozilla Public
Packit Service ae04f2
# License, v. 2.0. If a copy of the MPL was not distributed with this
Packit Service ae04f2
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit Service ae04f2
#
Packit Service ae04f2
# See the COPYRIGHT file distributed with this work for additional
Packit Service ae04f2
# information regarding copyright ownership.
Packit Service ae04f2
Packit Service ae04f2
srcdir =	@srcdir@
Packit Service ae04f2
VPATH =		@srcdir@
Packit Service ae04f2
top_srcdir =	@top_srcdir@
Packit Service ae04f2
Packit Service ae04f2
@BIND9_MAKE_INCLUDES@
Packit Service ae04f2
Packit Service ae04f2
PYTHON	=	@PYTHON@
Packit Service ae04f2
Packit Service ae04f2
PYTESTS =	dnskey_test.py policy_test.py
Packit Service ae04f2
Packit Service ae04f2
@BIND9_MAKE_RULES@
Packit Service ae04f2
Packit Service ae04f2
check test:
Packit Service ae04f2
	for test in $(PYTESTS); do \
Packit Service ae04f2
		PYTHONPATH=${srcdir}/../.. $(PYTHON) ${srcdir}/$$test; \
Packit Service ae04f2
	done
Packit Service ae04f2
Packit Service ae04f2
clean distclean::
Packit Service ae04f2
	rm -rf *.pyc __pycache__
Packit Service ae04f2
Packit Service ae04f2
distclean::
Packit Service ae04f2
	rm -f ${PYTESTS}