Rename system test directory with common files to _common

The old name "common" clashes with the convention of system test
directory naming. It appears as a system test directory, but it only
contains helper files.

To reduce confusion and to allow automatic detection of issues with
possibly missing test files, rename the helper directory to "_common".
The leading underscore indicates the directory is different and the its
name can no longer be confused with regular system test directories.
This commit is contained in:
Tom Krizek
2023-09-18 17:25:17 +02:00
parent 7f91925dad
commit 168dba163c
247 changed files with 287 additions and 285 deletions

View File

@@ -68,7 +68,7 @@ dnssec-policy "not-enough-hours-in-day" {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};
zone "trusted" {

View File

@@ -75,7 +75,7 @@ dnssec-policy "autonsec3" {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};
zone "example" {

View File

@@ -50,7 +50,7 @@ controls {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};
zone "corp" {

View File

@@ -38,5 +38,5 @@ controls {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};

View File

@@ -39,5 +39,5 @@ controls {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};

View File

@@ -48,7 +48,7 @@ view rec {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};
zone secure.example {

View File

@@ -37,7 +37,7 @@ controls {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};
include "trusted.conf";

View File

@@ -29,7 +29,7 @@ options {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};
zone "optout-tld" {

View File

@@ -29,7 +29,7 @@ options {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};
zone "nsec3.example" {

View File

@@ -39,7 +39,7 @@ controls {
zone "." {
type hint;
file "../../common/root.hint";
file "../../_common/root.hint";
};
include "managed.conf";

View File

@@ -38,7 +38,7 @@ delv_with_opts() {
}
rndccmd() {
"$RNDC" -c ../common/rndc.conf -p "$CONTROLPORT" -s "$@"
"$RNDC" -c ../_common/rndc.conf -p "$CONTROLPORT" -s "$@"
}
# TODO: Move loadkeys_on to conf.sh.common