mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-23 10:37:43 -04:00
Change the convention for system test directory names to always use an underscore rather than a hyphen. Names using underscore are valid python package names and can be used with standard `import` facilities in python, which allows easier code reuse. The temporary directories for test execution and their convenience symlinks have been switched to using hyphens rather than underscores to keep the pytest collection, filtering and .gitignore working as expected.
32 lines
567 B
Text
32 lines
567 B
Text
.cache
|
|
.hypothesis
|
|
.mypy_cache
|
|
__pycache__
|
|
dig.out*
|
|
rndc.out*
|
|
nsupdate.out*
|
|
named.lock
|
|
named.pid
|
|
named.run
|
|
/feature-test
|
|
/legacy.run.sh
|
|
/makejournal
|
|
/random.data
|
|
/*.log
|
|
/*.trs
|
|
/*.xml
|
|
/resolve
|
|
/legacy.run.sh
|
|
/run.log
|
|
/start.sh
|
|
/stop.sh
|
|
/ifconfig.sh
|
|
/isctest/vars/.build_vars/*
|
|
!/isctest/vars/.build_vars/*.in
|
|
!/isctest/vars/.build_vars/meson.build
|
|
|
|
# Ignore file names with a hyphen in their name except C files.
|
|
# This is done to ignore the temporary directories and symlinks created by the
|
|
# pytest runner, which contain underscore in their file names.
|
|
/*-*
|
|
!/*-*.c
|