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).
56 lines
2.1 KiB
C++
56 lines
2.1 KiB
C++
using MyTypeAlias = int;
|
|
|
|
extern "C" {
|
|
template < typename T > *Allocate() { }
|
|
}
|
|
|
|
namespace rdar14063074 {
|
|
template <typename T>
|
|
struct TS {};
|
|
struct TS<int> {};
|
|
|
|
template <typename T>
|
|
void tfoo() {}
|
|
void tfoo<int>() {}
|
|
}
|
|
|
|
namespace crash1 {
|
|
template<typename T> class A {
|
|
A(A &) = delete;
|
|
void meth();
|
|
};
|
|
template <> void A<int>::meth();
|
|
template class A<int>;
|
|
}
|
|
|
|
class B {
|
|
mutable int x_;
|
|
int y_;
|
|
|
|
B() = default;
|
|
B(int);
|
|
explicit B(double);
|
|
B(const B&);
|
|
B(B&&);
|
|
};
|
|
|
|
class C {
|
|
explicit C(const C&);
|
|
};
|
|
|
|
// RUN: c-index-test -index-file %s > %t
|
|
// RUN: FileCheck %s -input-file=%t
|
|
|
|
// CHECK: [indexDeclaration]: kind: type-alias | name: MyTypeAlias | {{.*}} | loc: 1:7
|
|
// CHECK: [indexDeclaration]: kind: struct-template-spec | name: TS | {{.*}} | loc: 10:8
|
|
// CHECK: [indexDeclaration]: kind: function-template-spec | name: tfoo | {{.*}} | loc: 14:6
|
|
// CHECK: [indexDeclaration]: kind: c++-instance-method | name: meth | {{.*}} | loc: 22:26
|
|
// CHECK: [indexDeclaration]: kind: field | name: x_ | USR: c:@S@B@FI@x_ | lang: C++ | cursor: FieldDecl=x_:27:15 (Definition) (mutable) | loc: 27:15 | semantic-container: [B:26:7] | lexical-container: [B:26:7] | isRedecl: 0 | isDef: 1 | isContainer: 0 | isImplicit: 0
|
|
// CHECK: [indexDeclaration]: kind: field | name: y_ | USR: c:@S@B@FI@y_ | lang: C++ | cursor: FieldDecl=y_:28:7 (Definition) | loc: 28:7 | semantic-container: [B:26:7] | lexical-container: [B:26:7] | isRedecl: 0 | isDef: 1 | isContainer: 0 | isImplicit: 0
|
|
// CHECK: [indexDeclaration]: kind: constructor | name: B | {{.*}} (default constructor) (defaulted) | loc: 30:3
|
|
// CHECK: [indexDeclaration]: kind: constructor | name: B | {{.*}} (converting constructor) | loc: 31:3
|
|
// CHECK: [indexDeclaration]: kind: constructor | name: B | {{.*}} | loc: 32:12
|
|
// CHECK: [indexDeclaration]: kind: constructor | name: B | {{.*}} (copy constructor) (converting constructor) | loc: 33:3
|
|
// CHECK: [indexDeclaration]: kind: constructor | name: B | {{.*}} (move constructor) (converting constructor) | loc: 34:3
|
|
// CHECK: [indexDeclaration]: kind: constructor | name: C | {{.*}} (copy constructor) (explicit) | loc: 38:12
|