Files
RedBear-OS/local/recipes/dev/libclc/source/clang/test/Analysis/objc-subscript.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

87 lines
2.2 KiB
Objective-C

// RUN: %clang_analyze_cc1 -analyzer-checker=core,osx.cocoa.RetainCount -verify -Wno-objc-root-class %s
typedef signed char BOOL;
typedef unsigned int NSUInteger;
@interface NSObject
+(id)alloc;
-(id)init;
-(id)autorelease;
-(id)copy;
-(id)retain;
@end
@interface Subscriptable : NSObject
- (void)setObject:(id)obj atIndexedSubscript:(NSUInteger)index;
- (id)objectAtIndexedSubscript:(NSUInteger)index;
- (void)setObject:(id)obj forKeyedSubscript:(id)key;
- (id)objectForKeyedSubscript:(id)key;
@end
@interface Test : Subscriptable
@end
@implementation Test
- (id)storeDoesNotRetain {
Test *cell = [[[Test alloc] init] autorelease];
NSObject *string1 = [[NSObject alloc] init]; // expected-warning {{Potential leak}}
cell[0] = string1;
cell[self] = string1;
cell[string1] = self;
return cell;
}
- (id)getDoesNotRetain:(BOOL)keyed {
if (keyed)
return [self[self] autorelease]; // expected-warning{{Object autoreleased too many times}}
else
return [self[0] autorelease]; // expected-warning{{Object autoreleased too many times}}
}
- (id)testUninitializedObject:(BOOL)keyed {
Test *o;
if (keyed) {
if (o[self]) // expected-warning {{Subscript access on an uninitialized object pointer}}
return o; // no-warning (sink)
} else {
if (o[0]) // expected-warning {{Subscript access on an uninitialized object pointer}}
return o; // no-warning (sink)
}
return self;
}
- (void)testUninitializedArgument:(id)input testCase:(unsigned)testCase {
NSUInteger i;
id o;
switch (testCase) {
case 0:
self[0] = o; // expected-warning {{Argument for subscript setter is an uninitialized value}}
break;
case 1:
self[i] = input; // expected-warning {{Subscript index is an uninitialized value}}
break;
case 2:
(void)self[i]; // expected-warning {{Subscript index is an uninitialized value}}
break;
case 3:
self[input] = o; // expected-warning {{Argument for subscript setter is an uninitialized value}}
break;
case 4:
self[o] = input; // expected-warning {{Subscript index is an uninitialized value}}
break;
case 5:
(void)self[o]; // expected-warning {{Subscript index is an uninitialized value}}
break;
default:
break;
}
}
@end