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).
107 lines
2.5 KiB
Objective-C
107 lines
2.5 KiB
Objective-C
// UNSUPPORTED: target={{.*}}-zos{{.*}}, target={{.*}}-aix{{.*}}
|
|
// RUN: rm -rf %t
|
|
// RUN: split-file %s %t
|
|
// RUN: %clang_cc1 -emit-llvm -o %t/test.bc -F%t/Frameworks %t/test.m \
|
|
// RUN: -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/modules.cache
|
|
// RUN: %clang_cc1 -emit-llvm -o %t/test.bc -F%t/Frameworks %t/test-functions.m \
|
|
// RUN: -fmodules -fimplicit-module-maps -fmodules-cache-path=%t/modules.cache
|
|
|
|
// Test a case when Objective-C interface ivars are present in two different modules.
|
|
|
|
//--- Frameworks/Foundation.framework/Headers/Foundation.h
|
|
@interface NSObject
|
|
@end
|
|
|
|
//--- Frameworks/Foundation.framework/Modules/module.modulemap
|
|
framework module Foundation {
|
|
header "Foundation.h"
|
|
export *
|
|
}
|
|
|
|
//--- Frameworks/ObjCInterface.framework/Headers/ObjCInterface.h
|
|
#import <Foundation/Foundation.h>
|
|
@interface ObjCInterface : NSObject {
|
|
@public
|
|
id _item;
|
|
}
|
|
@end
|
|
|
|
@interface WithBitFields : NSObject {
|
|
@public
|
|
int x: 3;
|
|
int y: 4;
|
|
}
|
|
@end
|
|
|
|
//--- Frameworks/ObjCInterface.framework/Modules/module.modulemap
|
|
framework module ObjCInterface {
|
|
header "ObjCInterface.h"
|
|
export *
|
|
}
|
|
|
|
//--- Frameworks/ObjCInterfaceCopy.framework/Headers/ObjCInterfaceCopy.h
|
|
#import <Foundation/Foundation.h>
|
|
@interface ObjCInterface : NSObject {
|
|
@public
|
|
id _item;
|
|
}
|
|
@end
|
|
|
|
@interface WithBitFields : NSObject {
|
|
@public
|
|
int x: 3;
|
|
int y: 4;
|
|
}
|
|
@end
|
|
|
|
// Inlined function present only in Copy.framework to make sure it uses decls from Copy module.
|
|
__attribute__((always_inline)) void inlinedIVarAccessor(ObjCInterface *obj, WithBitFields *bitFields) {
|
|
obj->_item = 0;
|
|
bitFields->x = 0;
|
|
}
|
|
|
|
//--- Frameworks/ObjCInterfaceCopy.framework/Modules/module.modulemap
|
|
framework module ObjCInterfaceCopy {
|
|
header "ObjCInterfaceCopy.h"
|
|
export *
|
|
}
|
|
|
|
//--- test.m
|
|
#import <ObjCInterface/ObjCInterface.h>
|
|
#import <ObjCInterfaceCopy/ObjCInterfaceCopy.h>
|
|
|
|
@implementation ObjCInterface
|
|
- (void)test:(id)item {
|
|
_item = item;
|
|
}
|
|
@end
|
|
|
|
@implementation WithBitFields
|
|
- (void)reset {
|
|
x = 0;
|
|
y = 0;
|
|
}
|
|
@end
|
|
|
|
//--- test-functions.m
|
|
#import <ObjCInterface/ObjCInterface.h>
|
|
|
|
void testAccessIVar(ObjCInterface *obj, id item) {
|
|
obj->_item = item;
|
|
}
|
|
void testAccessBitField(WithBitFields *obj) {
|
|
obj->x = 0;
|
|
}
|
|
|
|
#import <ObjCInterfaceCopy/ObjCInterfaceCopy.h>
|
|
|
|
void testAccessIVarLater(ObjCInterface *obj, id item) {
|
|
obj->_item = item;
|
|
}
|
|
void testAccessBitFieldLater(WithBitFields *obj) {
|
|
obj->y = 0;
|
|
}
|
|
void testInlinedFunction(ObjCInterface *obj, WithBitFields *bitFields) {
|
|
inlinedIVarAccessor(obj, bitFields);
|
|
}
|