2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +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.

(cherry picked from commit eeafcee7ad)
This commit is contained in:
Mark Andrews
2025-06-18 12:49:04 +10:00
parent e70a976958
commit 072f5d0009

View File

@@ -190,8 +190,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;