bind9/bin/tests/system/journal/tests_sh_journal.py
Evan Hunt 27a34fdac1 exercise named-makejournal with multiple transactions
the journal system test now checks that named-makejournal is
able to create journal files with multiple transactions.
2025-06-13 21:20:13 -07:00

30 lines
766 B
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(
[
"dig.out.*",
"journalprint.out.*",
"makejournal.out.*",
"tmp.jnl",
"ns*/*.db",
"ns*/*.jnl",
"ns1/managed-keys.bind",
"ns2/managed-keys.bind",
"zones/*.jnl",
]
)
def test_journal(run_tests_sh):
run_tests_sh()