2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 18:19:42 +00:00

Preserve brackets around string concatenation

We need disable clang-format here to preserve the brackets around
the string concatenation to prevent -Wstring-concatenation -Werror
breaking the build.
This commit is contained in:
Mark Andrews 2025-06-18 12:49:04 +10:00
parent 3620db5ea6
commit eeafcee7ad

View File

@ -168,8 +168,10 @@ ISC_RUN_TEST_IMPL(private_nsec3_totext) {
const char *results[] = { "Creating NSEC3 chain 1 0 1 BEEF", const char *results[] = { "Creating NSEC3 chain 1 0 1 BEEF",
"Creating NSEC3 chain 1 1 10 DADD", "Creating NSEC3 chain 1 1 10 DADD",
"Pending NSEC3 chain 1 0 20 BEAD", "Pending NSEC3 chain 1 0 20 BEAD",
/* clang-format off */
("Removing NSEC3 chain 1 0 30 DEAF / " ("Removing NSEC3 chain 1 0 30 DEAF / "
"creating NSEC chain"), "creating NSEC chain"),
/* clang-format on */
"Removing NSEC3 chain 1 0 100 FEEDABEE" }; "Removing NSEC3 chain 1 0 100 FEEDABEE" };
int ncases = 5; int ncases = 5;