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).
70 lines
2.2 KiB
C
70 lines
2.2 KiB
C
// RUN: %clang_cc1 -Wno-strict-prototypes -O1 -disable-llvm-optzns -std=gnu89 -triple i386-apple-darwin9 -emit-llvm %s -o - | FileCheck -check-prefix CHECK-GNU89 %s
|
|
// RUN: %clang_cc1 -Wno-strict-prototypes -O1 -disable-llvm-optzns -std=c99 -triple i386-apple-darwin9 -emit-llvm %s -o - | FileCheck -check-prefix CHECK-C99 %s
|
|
|
|
// CHECK-GNU89-LABEL: define{{.*}} i32 @f0()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f0()
|
|
int f0(void);
|
|
int f0(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define{{.*}} i32 @f1()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f1()
|
|
inline int f1(void);
|
|
int f1(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define{{.*}} i32 @f2()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f2()
|
|
int f2(void);
|
|
inline int f2(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define{{.*}} i32 @f3()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f3()
|
|
extern inline int f3(void);
|
|
int f3(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define{{.*}} i32 @f5()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f5()
|
|
extern inline int f5(void);
|
|
inline int f5(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define{{.*}} i32 @f6()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f6()
|
|
inline int f6(void);
|
|
extern inline int f6(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define{{.*}} i32 @f7()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f7()
|
|
extern inline int f7(void);
|
|
extern int f7(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define{{.*}} i32 @fA()
|
|
inline int fA(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define{{.*}} i32 @fB()
|
|
inline int fB() { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define available_externally i32 @f4()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f4()
|
|
int f4(void);
|
|
extern inline int f4(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define available_externally i32 @f8()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f8()
|
|
extern int f8(void);
|
|
extern inline int f8(void) { return 0; }
|
|
|
|
// CHECK-GNU89-LABEL: define available_externally i32 @f9()
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @f9()
|
|
extern inline int f9(void);
|
|
extern inline int f9(void) { return 0; }
|
|
|
|
// CHECK-C99-LABEL: define available_externally i32 @fA()
|
|
|
|
// CHECK-C99-LABEL: define{{.*}} i32 @fB()
|
|
|
|
int test_all(void) {
|
|
return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
|
|
+ fA() + fB();
|
|
}
|
|
|
|
int fB(void);
|