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).
65 lines
1.8 KiB
ArmAsm
65 lines
1.8 KiB
ArmAsm
# REQUIRES: system-linux
|
|
|
|
## Check that BOLT correctly detects the Linux kernel version
|
|
|
|
# RUN: %clang -DA -target x86_64-unknown-unknown \
|
|
# RUN: %cflags -nostdlib %s -o %t.exe \
|
|
# RUN: -Wl,--image-base=0xffffffff80000000,--no-dynamic-linker,--no-eh-frame-hdr
|
|
# RUN: llvm-bolt %t.exe -o %t.out 2>&1 | FileCheck --check-prefix=CHECK-A %s
|
|
|
|
# RUN: %clang -DB -target x86_64-unknown-unknown \
|
|
# RUN: %cflags -nostdlib %s -o %t.exe \
|
|
# RUN: -Wl,--image-base=0xffffffff80000000,--no-dynamic-linker,--no-eh-frame-hdr
|
|
# RUN: llvm-bolt %t.exe -o %t.out 2>&1 | FileCheck --check-prefix=CHECK-B %s
|
|
|
|
# RUN: %clang -DC -target x86_64-unknown-unknown \
|
|
# RUN: %cflags -nostdlib %s -o %t.exe \
|
|
# RUN: -Wl,--image-base=0xffffffff80000000,--no-dynamic-linker,--no-eh-frame-hdr
|
|
# RUN: llvm-bolt %t.exe -o %t.out 2>&1 | FileCheck --check-prefix=CHECK-C %s
|
|
|
|
# RUN: %clang -DD -target x86_64-unknown-unknown \
|
|
# RUN: %cflags -nostdlib %s -o %t.exe \
|
|
# RUN: -Wl,--image-base=0xffffffff80000000,--no-dynamic-linker,--no-eh-frame-hdr
|
|
# RUN: llvm-bolt %t.exe -o %t.out 2>&1 | FileCheck --check-prefix=CHECK-D %s
|
|
|
|
.text
|
|
.globl foo
|
|
.type foo, %function
|
|
foo:
|
|
ret
|
|
.size foo, .-foo
|
|
|
|
## Linux kernel version
|
|
.rodata
|
|
.align 16
|
|
.globl linux_banner
|
|
.type linux_banner, @object
|
|
linux_banner:
|
|
|
|
#ifdef A
|
|
.string "Linux version 6.6.61\n"
|
|
#endif
|
|
# CHECK-A: BOLT-INFO: Linux kernel version is 6.6.61
|
|
|
|
#ifdef B
|
|
.string "Linux version 6.6.50-rc4\n"
|
|
#endif
|
|
# CHECK-B: BOLT-INFO: Linux kernel version is 6.6.50
|
|
|
|
#ifdef C
|
|
.string "Linux version 6.6\n"
|
|
#endif
|
|
# CHECK-C: BOLT-INFO: Linux kernel version is 6.6
|
|
|
|
#ifdef D
|
|
.hidden linux_banner
|
|
.string "Linux version 6.6.15.2-2-xxx\n"
|
|
#endif
|
|
# CHECK-D: BOLT-INFO: Linux kernel version is 6.6
|
|
|
|
.size linux_banner, . - linux_banner
|
|
|
|
## Fake Linux Kernel sections.
|
|
.section __ksymtab,"a",@progbits
|
|
.section __ksymtab_gpl,"a",@progbits
|