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).
74 lines
2.1 KiB
C
74 lines
2.1 KiB
C
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
// CONFIG open rdar://6416474
|
|
// was rdar://5847976
|
|
// was rdar://6348320
|
|
|
|
#include <stdio.h>
|
|
#include <Block.h>
|
|
|
|
int verbose = 0;
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
if (argc > 1) verbose = 1;
|
|
|
|
__block void (^recursive_local_block)(int);
|
|
|
|
if (verbose) printf("recursive_local_block is a local recursive block\n");
|
|
recursive_local_block = ^(int i) {
|
|
if (verbose) printf("%d\n", i);
|
|
if (i > 0) {
|
|
recursive_local_block(i - 1);
|
|
}
|
|
};
|
|
|
|
if (verbose) printf("recursive_local_block's address is %p, running it:\n", (void*)recursive_local_block);
|
|
recursive_local_block(5);
|
|
|
|
if (verbose) printf("Creating other_local_block: a local block that calls recursive_local_block\n");
|
|
|
|
void (^other_local_block)(int) = ^(int i) {
|
|
if (verbose) printf("other_local_block running\n");
|
|
recursive_local_block(i);
|
|
};
|
|
|
|
if (verbose) printf("other_local_block's address is %p, running it:\n", (void*)other_local_block);
|
|
|
|
other_local_block(5);
|
|
|
|
#if __APPLE_CC__ >= 5627
|
|
if (verbose) printf("Creating other_copied_block: a Block_copy of a block that will call recursive_local_block\n");
|
|
|
|
void (^other_copied_block)(int) = Block_copy(^(int i) {
|
|
if (verbose) printf("other_copied_block running\n");
|
|
recursive_local_block(i);
|
|
});
|
|
|
|
if (verbose) printf("other_copied_block's address is %p, running it:\n", (void*)other_copied_block);
|
|
|
|
other_copied_block(5);
|
|
#endif
|
|
|
|
__block void (^recursive_copy_block)(int);
|
|
|
|
if (verbose) printf("Creating recursive_copy_block: a Block_copy of a block that will call recursive_copy_block recursively\n");
|
|
|
|
recursive_copy_block = Block_copy(^(int i) {
|
|
if (verbose) printf("%d\n", i);
|
|
if (i > 0) {
|
|
recursive_copy_block(i - 1);
|
|
}
|
|
});
|
|
|
|
if (verbose) printf("recursive_copy_block's address is %p, running it:\n", (void*)recursive_copy_block);
|
|
|
|
recursive_copy_block(5);
|
|
|
|
printf("%s: Success\n", argv[0]);
|
|
return 0;
|
|
}
|