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).
54 lines
2.0 KiB
C++
54 lines
2.0 KiB
C++
namespace {
|
|
class MyCls {
|
|
void in_foo() {
|
|
vec.x = 0;
|
|
}
|
|
void out_foo();
|
|
|
|
struct Vec { int x, y; };
|
|
Vec vec;
|
|
};
|
|
|
|
void MyCls::out_foo() {
|
|
vec.x = 0;
|
|
}
|
|
|
|
class OtherClass : public MyCls {
|
|
public:
|
|
OtherClass(const OtherClass &other) : MyCls(other), value(value) { }
|
|
|
|
private:
|
|
int value;
|
|
MyCls *object;
|
|
};
|
|
|
|
template <typename T>
|
|
class X {};
|
|
|
|
class Y : public X<int> {
|
|
Y() : X<int>() {}
|
|
};
|
|
}
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:4:9 -std=c++98 %s | FileCheck %s
|
|
// RUN: c-index-test -code-completion-at=%s:13:7 -std=c++98 %s | FileCheck %s
|
|
// CHECK: CXXMethod:{ResultType Vec &}{TypedText operator=}{LeftParen (}{Placeholder const Vec &}{RightParen )} (79)
|
|
// CHECK-NEXT: StructDecl:{TypedText Vec}{Text ::} (75)
|
|
// CHECK-NEXT: FieldDecl:{ResultType int}{TypedText x} (35)
|
|
// CHECK-NEXT: FieldDecl:{ResultType int}{TypedText y} (35)
|
|
// CHECK-NEXT: CXXDestructor:{ResultType void}{TypedText ~Vec}{LeftParen (}{RightParen )} (79)
|
|
// CHECK-NEXT: Completion contexts:
|
|
// CHECK-NEXT: Dot member access
|
|
// CHECK-NEXT: Container Kind: StructDecl
|
|
|
|
// RUN: c-index-test -code-completion-at=%s:18:41 %s | FileCheck -check-prefix=CHECK-CTOR-INIT %s
|
|
// CHECK-CTOR-INIT: ClassDecl:{TypedText MyCls}{LeftParen (}{Placeholder MyCls}{RightParen )} (7)
|
|
// CHECK-CTOR-INIT: MemberRef:{TypedText object}{LeftParen (}{Placeholder MyCls *}{RightParen )} (35)
|
|
// CHECK-CTOR-INIT: MemberRef:{TypedText value}{LeftParen (}{Placeholder int}{RightParen )} (35)
|
|
// RUN: c-index-test -code-completion-at=%s:18:55 %s | FileCheck -check-prefix=CHECK-CTOR-INIT-2 %s
|
|
// CHECK-CTOR-INIT-2-NOT: ClassDecl:{TypedText MyCls}{LeftParen (}{Placeholder MyCls}{RightParen )} (7)
|
|
// CHECK-CTOR-INIT-2: MemberRef:{TypedText object}{LeftParen (}{Placeholder MyCls *}{RightParen )} (35)
|
|
// CHECK-CTOR-INIT-2: MemberRef:{TypedText value}{LeftParen (}{Placeholder int}{RightParen )} (7)
|
|
// RUN: c-index-test -code-completion-at=%s:29:9 %s | FileCheck -check-prefix=CHECK-CTOR-INIT-3 %s
|
|
// CHECK-CTOR-INIT-3: ClassDecl:{TypedText X<int>}{LeftParen (}{Placeholder X<int>}{RightParen )} (7)
|