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).
43 lines
1.4 KiB
C
43 lines
1.4 KiB
C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
#if !__has_extension(gnu_asm)
|
|
#error Extension 'gnu_asm' should be available by default
|
|
#endif
|
|
|
|
void f1(void) {
|
|
// PR7673: Some versions of GCC support an empty clobbers section.
|
|
asm ("ret" : : :);
|
|
}
|
|
|
|
void f2(void) {
|
|
asm("foo" : "=r" (a)); // expected-error {{use of undeclared identifier 'a'}}
|
|
asm("foo" : : "r" (b)); // expected-error {{use of undeclared identifier 'b'}}
|
|
|
|
[[]] asm("");
|
|
[[gnu::deprecated]] asm(""); // expected-warning {{'gnu::deprecated' attribute ignored}}
|
|
}
|
|
|
|
void a(void) __asm__(""); // expected-error {{cannot use an empty string literal in 'asm'}}
|
|
void a(void) {
|
|
__asm__(""); // ok
|
|
}
|
|
|
|
__asm ; // expected-error {{expected '(' after 'asm'}}
|
|
|
|
// Don't crash on wide string literals in 'asm'.
|
|
int foo asm (L"bar"); // expected-error {{cannot use wide string literal in 'asm'}}
|
|
|
|
asm() // expected-error {{expected string literal in 'asm'}}
|
|
// expected-error@-1 {{expected ';' after top-level asm block}}
|
|
|
|
asm(; // expected-error {{expected string literal in 'asm'}}
|
|
|
|
asm("") // expected-error {{expected ';' after top-level asm block}}
|
|
|
|
// Unterminated asm strings at the end of the file were causing us to crash, so
|
|
// this needs to be last.
|
|
// expected-warning@+3 {{missing terminating '"' character}}
|
|
// expected-error@+2 {{expected string literal in 'asm'}}
|
|
// expected-error@+1 {{expected ';' after top-level asm block}}
|
|
asm("
|