mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-27 03:46:03 -04:00
The artifact lists in clean.sh and extra_artifacts might be slightly
different. The list was updated for each test to reflect the current
state.
(cherry picked from commit 7c259fe254)
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.extra_artifacts(
|
|
[
|
|
"baseline.txt",
|
|
"dig.out.*",
|
|
"raw.*",
|
|
"rndc.out*",
|
|
"text.*",
|
|
"ns*/*.raw*",
|
|
"ns*/*.jbk",
|
|
"ns*/*.jnl",
|
|
"ns*/*.signed",
|
|
"ns*/dsset-*",
|
|
"ns*/K*",
|
|
"ns1/255types.db",
|
|
"ns1/example.db.compat",
|
|
"ns1/on-limit-kasp.db",
|
|
"ns1/on-limit.db",
|
|
"ns1/over-limit.db",
|
|
"ns1/under-limit-kasp.db",
|
|
"ns1/under-limit.db",
|
|
"ns2/db-*",
|
|
"ns2/example.db",
|
|
"ns2/formerly-text.db",
|
|
"ns2/transfer.db.full",
|
|
"ns2/transfer.db.txt",
|
|
"ns2/under-limit-kasp.bk",
|
|
"ns2/under-limit.bk",
|
|
]
|
|
)
|
|
|
|
|
|
def test_masterformat(run_tests_sh):
|
|
run_tests_sh()
|