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).
35 lines
961 B
ArmAsm
35 lines
961 B
ArmAsm
# REQUIRES: x86
|
|
|
|
# RUN: rm -rf %t; split-file %s %t
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/2.s -o %t/2.o
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/3.s -o %t/3.o
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/main.s -o %t/main.o
|
|
|
|
# RUN: %lld -arch x86_64 -interposable -lSystem -o %t/main %t/main.o %t/2.o %t/3.o
|
|
# RUN: llvm-objdump --macho -d %t/main | FileCheck %s --check-prefix BUNDLE-OBJ
|
|
BUNDLE-OBJ-LABEL: _my_user:
|
|
BUNDLE-OBJ-NEXT: callq [[#%#x,]] ## symbol stub for: _my_friend
|
|
|
|
#--- 2.s
|
|
# my_lib: This contains the exported function
|
|
.globl _my_friend
|
|
_my_friend:
|
|
retq
|
|
|
|
#--- 3.s
|
|
# _my_user.s: This is the user/caller of the
|
|
# exported function
|
|
.text
|
|
_my_user:
|
|
callq _my_friend()
|
|
retq
|
|
|
|
#--- main.s
|
|
# main.s: dummy exec/main loads the exported function.
|
|
# This is basically a way to say `my_user` should get
|
|
# `my_func` from this executable.
|
|
.globl _main
|
|
.text
|
|
_main:
|
|
retq
|