cb424d7448
verify-patch-sanity.py validates every active recipe .patch has internally- consistent hunk line counts — catching the 'malformed patch at line N' failure at commit/CI/preflight time instead of hours into a cook. This cycle hit that class three times (qtwaylandscanner, sddm, xwayland), each only discovered when cookbook tried to apply the patch. Running it across the repo found 29 latent malformed patches (validated against GNU patch: e.g. relibc/P3-sysv-ipc reproduces 'malformed patch at line 22'). They were harmless only because they sit in vendored recipes (baked, not re- applied) — but would fail on any version-bump re-derivation. --fix recounts the hunk headers (body untouched) and repaired all 29. Wired into build-preflight.sh (Phase 1.0D) and redbear-ci.yml, with a unit test (test-patch-sanity.sh). Skips archived/legacy trees and unvalidatable formats (empty placeholders, bare-@@ git hunks).
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
// RUN: %clang_cc1 -std=c23 -fsyntax-only -verify=c %s
|
|
// RUN: %clang_cc1 -fsyntax-only -verify=cpp -x c++ -Wno-c23-extensions %s
|
|
|
|
|
|
struct S {
|
|
int arr[3];
|
|
};
|
|
|
|
struct S1 {
|
|
struct S s;
|
|
};
|
|
|
|
void cases(int x) {
|
|
int a[8] = {x, x, x, x, x, x,
|
|
#embed __FILE__
|
|
// c-warning@-1{{excess elements in array initializer}}
|
|
// cpp-error@-2{{excess elements in array initializer}}
|
|
};
|
|
int b[8] = {
|
|
#embed __FILE__
|
|
// c-warning@-1{{excess elements in array initializer}}
|
|
// cpp-error@-2{{excess elements in array initializer}}
|
|
};
|
|
int c[3000] = {x, x, x, x, x, x,
|
|
#embed __FILE__
|
|
};
|
|
char d[3] = {
|
|
#embed __FILE__
|
|
// c-warning@-1{{initializer-string for char array is too long}}
|
|
// cpp-error@-2{{initializer-string for char array is too long}}
|
|
};
|
|
|
|
char e[3000] = { 1,
|
|
#embed __FILE__
|
|
};
|
|
|
|
struct S s = {
|
|
#embed __FILE__
|
|
// c-warning@-1{{excess elements in struct initializer}}
|
|
// cpp-error@-2{{excess elements in struct initializer}}
|
|
, x
|
|
};
|
|
|
|
struct S1 s1 = {
|
|
#embed __FILE__
|
|
// c-warning@-1{{excess elements in struct initializer}}
|
|
// cpp-error@-2{{excess elements in struct initializer}}
|
|
, x
|
|
};
|
|
}
|