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).
84 lines
2.7 KiB
C++
84 lines
2.7 KiB
C++
// RUN: %clang_cc1 -fsyntax-only -verify -Werror=unreachable-code-aggressive %s
|
|
|
|
// Test that analysis-based warnings honor #pragma diagnostic controls.
|
|
|
|
struct [[clang::consumable(unconsumed)]] Linear {
|
|
[[clang::return_typestate(unconsumed)]]
|
|
Linear() {}
|
|
[[clang::callable_when(consumed)]]
|
|
~Linear() {}
|
|
};
|
|
|
|
int a() {
|
|
Linear l;
|
|
return 0; // No -Wconsumed diagnostic, analysis is not enabled.
|
|
return 1; // expected-error {{'return' will never be executed}}
|
|
}
|
|
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic error "-Wconsumed"
|
|
int b() {
|
|
Linear l;
|
|
return 0; // expected-error {{invalid invocation of method '~Linear' on object 'l' while it is in the 'unconsumed' state}}
|
|
return 1; // expected-error {{'return' will never be executed}}
|
|
}
|
|
#pragma clang diagnostic pop
|
|
|
|
int c() {
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic error "-Wconsumed"
|
|
Linear l;
|
|
return 0; // expected-error {{invalid invocation of method '~Linear' on object 'l' while it is in the 'unconsumed' state}}
|
|
return 1; // expected-error {{'return' will never be executed}}
|
|
#pragma clang diagnostic pop
|
|
}
|
|
|
|
int d() {
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic error "-Wconsumed"
|
|
#pragma clang diagnostic ignored "-Wunreachable-code-aggressive"
|
|
Linear l;
|
|
return 0; // expected-error {{invalid invocation of method '~Linear' on object 'l' while it is in the 'unconsumed' state}}
|
|
return 1; // Diagnostic is ignored
|
|
}
|
|
#pragma clang diagnostic pop
|
|
|
|
int e() {
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic error "-Wconsumed"
|
|
#pragma clang diagnostic ignored "-Wunreachable-code-aggressive"
|
|
Linear l;
|
|
return 0; // expected-error {{invalid invocation of method '~Linear' on object 'l' while it is in the 'unconsumed' state}}
|
|
return 1; // Diagnostic is ignored
|
|
#pragma clang diagnostic pop
|
|
}
|
|
|
|
int f() {
|
|
Linear l;
|
|
return 0; // No -Wconsumed diagnostic, analysis is not enabled
|
|
return 1; // expected-error {{'return' will never be executed}}
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wunreachable-code-aggressive"
|
|
}
|
|
#pragma clang diagnostic pop
|
|
|
|
int g() {
|
|
Linear l;
|
|
return 0; // No -Wconsumed diagnostic, the diagnostic generated at } is not enabled on this line.
|
|
return 1; // expected-error {{'return' will never be executed}}
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic warning "-Wconsumed"
|
|
}
|
|
#pragma clang diagnostic pop
|
|
|
|
int h() {
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic error "-Wconsumed"
|
|
#pragma clang diagnostic ignored "-Wunreachable-code-aggressive"
|
|
#pragma clang diagnostic pop
|
|
|
|
Linear l;
|
|
return 0; // No -Wconsumed diagnostic, the diagnostic generated at } is not enabled on this line.
|
|
return 1; // expected-error {{'return' will never be executed}}
|
|
}
|