xref: /netbsd-src/external/mpl/bind/dist/bin/tests/system/synthfromdnssec/tests_sh_synthfromdnssec.py (revision 9689912e6b171cbda866ec33f15ae94a04e2c02d)
1# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
2#
3# SPDX-License-Identifier: MPL-2.0
4#
5# This Source Code Form is subject to the terms of the Mozilla Public
6# License, v. 2.0.  If a copy of the MPL was not distributed with this
7# file, you can obtain one at https://mozilla.org/MPL/2.0/.
8#
9# See the COPYRIGHT file distributed with this work for additional
10# information regarding copyright ownership.
11
12import pytest
13
14pytestmark = pytest.mark.extra_artifacts(
15    [
16        "black.out",
17        "dig.out.*",
18        "insecure.nodata.out",
19        "insecure.nxdomain.out",
20        "insecure.wild.out",
21        "insecure.wildcname.out",
22        "insecure.wildnodata1nsec.out",
23        "insecure.wildnodata2nsec.out",
24        "insecure.wildnodata2nsecafterdata.out",
25        "json.out*",
26        "minimal.nxdomain.out",
27        "nodata.out",
28        "nxdomain.out",
29        "wild.out",
30        "wildcname.out",
31        "wildnodata1nsec.out",
32        "wildnodata2nsec.out",
33        "wildnodata2nsecafterdata.out",
34        "xml.out*",
35        "ns*/named.stats",
36        "ns*/statistics-channels.conf",
37        "ns1/K*+*+*.key",
38        "ns1/K*+*+*.private",
39        "ns1/dnamed.db",
40        "ns1/dnamed.db.signed",
41        "ns1/dsset-*",
42        "ns1/example.db",
43        "ns1/example.db.signed",
44        "ns1/insecure.example.db",
45        "ns1/insecure.example.db.signed",
46        "ns1/minimal.db",
47        "ns1/minimal.db.signed",
48        "ns1/root.db",
49        "ns1/root.db.signed",
50        "ns1/soa-without-dnskey.db",
51        "ns1/soa-without-dnskey.db.signed",
52        "ns1/trusted.conf",
53    ]
54)
55
56
57def test_synthfromdnssec(run_tests_sh):
58    run_tests_sh()
59