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).
41 lines
1.5 KiB
ArmAsm
41 lines
1.5 KiB
ArmAsm
// REQUIRES: x86
|
|
// RUN: mkdir -p %t/lib
|
|
// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t/m.o
|
|
// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux \
|
|
// RUN: %p/Inputs/libsearch-st.s -o %t/st.o
|
|
// RUN: rm -f %t/lib/libls.a
|
|
// RUN: llvm-ar rcs %t/lib/libls.a %t/st.o
|
|
|
|
// Should not link because of undefined symbol _bar
|
|
// RUN: not ld.lld -o /dev/null %t/m.o 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=UNDEFINED %s
|
|
// UNDEFINED: error: undefined symbol: _bar
|
|
// UNDEFINED: >>> referenced by {{.*}}:(.text+0x1)
|
|
|
|
// We need to be sure that there is no suitable library in the /lib directory
|
|
// RUN: not ld.lld -o /dev/null %t/m.o -L/lib -l:libls.a 2>&1 \
|
|
// RUN: | FileCheck --check-prefix=NOLIB %s
|
|
// NOLIB: unable to find library -l:libls.a
|
|
|
|
// Should just remove the '=' symbol if --sysroot is not specified.
|
|
// Case 1: relative path
|
|
// RUN: cd %t && ld.lld -o %t/r %t/m.o -L=lib -l:libls.a
|
|
// Case 2: absolute path
|
|
// RUN: cd %p && ld.lld -o %t/r %t/m.o -L=%t/lib -l:libls.a
|
|
|
|
// RUN: cd %p
|
|
|
|
// Should substitute SysRoot if specified
|
|
// RUN: ld.lld -o %t/r %t/m.o --sysroot=%t -L=lib -l:libls.a
|
|
// RUN: ld.lld -o %t/r %t/m.o --sysroot=%t -L=/lib -l:libls.a
|
|
// Check alias.
|
|
// RUN: ld.lld -o %t/r %t/m.o --sysroot %t -L=lib -l:libls.a
|
|
|
|
// Should not substitute SysRoot if the directory name does not start with '='
|
|
// RUN: not ld.lld -o /dev/null %r/m.o --sysroot=%t -Llib -l:libls.a
|
|
// RUN: not ld.lld -o /dev/null %r/m.o --sysroot=%t -L/lib -l:libls.a
|
|
|
|
.globl _start,_bar
|
|
_start:
|
|
call _bar
|