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).
56 lines
2.5 KiB
ArmAsm
56 lines
2.5 KiB
ArmAsm
# REQUIRES: x86
|
|
# RUN: rm -rf %t && mkdir -p %t
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t/test.o
|
|
# RUN: %lld -o %t/executable %t/test.o
|
|
# RUN: %lld -execute -o %t/explicit-executable %t/test.o
|
|
# RUN: %lld -bundle -o %t/bundle %t/test.o
|
|
# RUN: %lld -dylib -o %t/dylib %t/test.o
|
|
|
|
## These load commands should be in every final output binary.
|
|
# COMMON-DAG: cmd LC_DYLD_INFO_ONLY
|
|
# COMMON-DAG: cmd LC_SYMTAB
|
|
# COMMON-DAG: cmd LC_DYSYMTAB
|
|
# COMMON-DAG: cmd LC_UUID
|
|
|
|
## Check for the presence of load commands that are essential for a working
|
|
## executable. Also check that it has the right filetype.
|
|
# RUN: llvm-objdump --macho --all-headers %t/executable | FileCheck %s --check-prefix=COMMON
|
|
# RUN: llvm-objdump --macho --all-headers %t/executable | FileCheck %s --check-prefix=EXEC
|
|
# RUN: llvm-objdump --macho --all-headers %t/explicit-executable | FileCheck %s --check-prefix=COMMON
|
|
# RUN: llvm-objdump --macho --all-headers %t/explicit-executable | FileCheck %s --check-prefix=EXEC
|
|
# EXEC: magic cputype cpusubtype caps filetype
|
|
# EXEC-NEXT: MH_MAGIC_64 X86_64 ALL {{.*}} EXECUTE
|
|
# EXEC-DAG: cmd LC_MAIN
|
|
# EXEC-DAG: cmd LC_LOAD_DYLINKER
|
|
|
|
## Check for the absence of load commands that should not be in an executable.
|
|
# RUN: llvm-objdump --macho --all-headers %t/executable | FileCheck %s --check-prefix=NEXEC
|
|
# NEXEC-NOT: cmd: LC_ID_DYLIB
|
|
|
|
## Check for the presence / absence of load commands for the dylib.
|
|
# RUN: llvm-objdump --macho --all-headers %t/dylib | FileCheck %s --check-prefix=COMMON
|
|
# RUN: llvm-objdump --macho --all-headers %t/dylib | FileCheck %s --check-prefix=DYLIB
|
|
# DYLIB: magic cputype cpusubtype caps filetype
|
|
# DYLIB-NEXT: MH_MAGIC_64 X86_64 ALL {{.*}} DYLIB
|
|
# DYLIB: cmd LC_ID_DYLIB
|
|
|
|
# RUN: llvm-objdump --macho --all-headers %t/bundle | FileCheck %s --check-prefix=NDYLIB
|
|
# NDYLIB-NOT: cmd: LC_MAIN
|
|
# NDYLIB-NOT: cmd: LC_LOAD_DYLINKER
|
|
|
|
## Check for the presence / absence of load commands for the bundle.
|
|
# RUN: llvm-objdump --macho --all-headers %t/bundle | FileCheck %s --check-prefix=COMMON
|
|
# RUN: llvm-objdump --macho --all-headers %t/bundle | FileCheck %s --check-prefix=BUNDLE
|
|
# BUNDLE: magic cputype cpusubtype caps filetype
|
|
# BUNDLE-NEXT: MH_MAGIC_64 X86_64 ALL {{.*}} BUNDLE
|
|
|
|
# RUN: llvm-objdump --macho --all-headers %t/bundle | FileCheck %s --check-prefix=NBUNDLE
|
|
# NBUNDLE-NOT: cmd: LC_MAIN
|
|
# NBUNDLE-NOT: cmd: LC_LOAD_DYLINKER
|
|
|
|
.text
|
|
.global _main
|
|
_main:
|
|
mov $0, %rax
|
|
ret
|