Files
RedBear-OS/local/recipes/dev/libclc/source/clang/test/CodeGenObjC/attr-availability.m
T
vasilito cb424d7448 build: static patch-sanity linter (shift-left the malformed-patch class)
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).
2026-08-01 05:13:02 +03:00

36 lines
1.5 KiB
Objective-C

// RUN: %clang_cc1 -fvisibility=hidden "-triple" "x86_64-apple-darwin8.0.0" -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-10_4 %s
// RUN: %clang_cc1 -fvisibility=hidden "-triple" "x86_64-apple-darwin9.0.0" -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-10_5 %s
// RUN: %clang_cc1 -fvisibility=hidden "-triple" "x86_64-apple-darwin10.0.0" -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-10_6 %s
// CHECK-10_4: @"OBJC_CLASS_$_WeakClass1" = extern_weak global
// CHECK-10_5: @"OBJC_CLASS_$_WeakClass1" = external global
// CHECK-10_6: @"OBJC_CLASS_$_WeakClass1" = external global
__attribute__((availability(macosx,introduced=10.5)))
@interface WeakClass1 @end
@implementation WeakClass1(MyCategory) @end
@implementation WeakClass1(YourCategory) @end
// CHECK-10_4: @"OBJC_CLASS_$_WeakClass2" = extern_weak global
// CHECK-10_5: @"OBJC_CLASS_$_WeakClass2" = extern_weak global
// CHECK-10_6: @"OBJC_CLASS_$_WeakClass2" = external global
__attribute__((availability(macosx,introduced=10.6)))
@interface WeakClass2 @end
@implementation WeakClass2(MyCategory) @end
@implementation WeakClass2(YourCategory) @end
// CHECK-10_4: @"OBJC_CLASS_$_WeakClass3" = extern_weak global
// CHECK-10_5: @"OBJC_CLASS_$_WeakClass3" = extern_weak global
// CHECK-10_6: @"OBJC_CLASS_$_WeakClass3" = external global
__attribute__((availability(macosx,introduced=10.6)))
@interface WeakClass3 @end
@class WeakClass3;
@implementation WeakClass3(MyCategory) @end
@implementation WeakClass3(YourCategory) @end