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).
47 lines
1.6 KiB
ArmAsm
47 lines
1.6 KiB
ArmAsm
# REQUIRES: x86
|
|
|
|
# RUN: rm -rf %t; split-file %s %t
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/undefined-symbol.s -o %t/undefined-symbol.o
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/export-symbols.s -o %t/export-symbols.o
|
|
|
|
# RUN: not %lld %t/undefined-symbol.o -o /dev/null 2>&1 | FileCheck --check-prefix=UNDEF %s
|
|
# RUN: not %lld -demangle %t/undefined-symbol.o -o /dev/null 2>&1 | \
|
|
# RUN: FileCheck --check-prefix=DEMANGLE-UNDEF %s
|
|
|
|
# RUN: not %lld -exported_symbol __ZTIN3foo3bar4MethE -exported_symbol __ZTSN3foo3bar4MethE %t/export-symbols.o -o /dev/null 2>&1 | FileCheck --check-prefix=EXPORT %s
|
|
# RUN: not %lld -demangle -exported_symbol __ZTIN3foo3bar4MethE -exported_symbol __ZTSN3foo3bar4MethE %t/export-symbols.o -o /dev/null 2>&1 | FileCheck --check-prefix=DEMANGLE-EXPORT %s
|
|
|
|
# UNDEF: undefined symbol: __Z1fv
|
|
# DEMANGLE-UNDEF: undefined symbol: f()
|
|
|
|
# EXPORT-DAG: cannot export hidden symbol __ZTSN3foo3bar4MethE
|
|
# EXPORT-DAG: cannot export hidden symbol __ZTIN3foo3bar4MethE
|
|
|
|
# DEMANGLE-EXPORT-DAG: cannot export hidden symbol typeinfo name for foo::bar::Meth
|
|
# DEMANGLE-EXPORT-DAG: cannot export hidden symbol typeinfo for foo::bar::Meth
|
|
|
|
#--- undefined-symbol.s
|
|
.globl _main
|
|
_main:
|
|
callq __Z1fv
|
|
ret
|
|
|
|
|
|
#--- export-symbols.s
|
|
.globl _main
|
|
_main:
|
|
ret
|
|
|
|
.globl __ZTIN3foo3bar4MethE
|
|
.weak_def_can_be_hidden __ZTIN3foo3bar4MethE
|
|
.private_extern __ZTIN3foo3bar4MethE
|
|
__ZTIN3foo3bar4MethE:
|
|
retq
|
|
|
|
.globl __ZTSN3foo3bar4MethE
|
|
.weak_def_can_be_hidden __ZTSN3foo3bar4MethE
|
|
.private_extern __ZTSN3foo3bar4MethE
|
|
__ZTSN3foo3bar4MethE:
|
|
retq
|