mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-19 17:17:04 -04:00
Treat bin/tests/system/_common as non-temp directory
The _common directory is a special case directory which contains shared files for other system test directories. Make sure it's tracked in git and not deleted during temporary directory cleanup.
This commit is contained in:
parent
168dba163c
commit
9e13c3dbcb
2 changed files with 2 additions and 1 deletions
1
bin/tests/system/.gitignore
vendored
1
bin/tests/system/.gitignore
vendored
|
|
@ -26,3 +26,4 @@ named.run
|
|||
/*_*
|
||||
!/*_*.py
|
||||
!/*_*.sh
|
||||
!/_common
|
||||
|
|
|
|||
|
|
@ -240,4 +240,4 @@ $(TESTS): legacy.run.sh
|
|||
test-local: check
|
||||
|
||||
clean-local::
|
||||
-find $(builddir) -maxdepth 1 -type d -name "*_*" | xargs rm -rf
|
||||
-find -L . -mindepth 1 -maxdepth 1 -type d -name "*_*" -and -not -name "_common" -exec rm -rf {} \;
|
||||
|
|
|
|||
Loading…
Reference in a new issue