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).
73 lines
2.1 KiB
ArmAsm
73 lines
2.1 KiB
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t.o
|
|
# RUN: echo "-sectcreate 1.1" >%t1
|
|
# RUN: echo "-sectcreate 1.2" >%t2
|
|
# RUN: echo "-sectcreate 2" >%t3
|
|
# RUN: %lld \
|
|
# RUN: -sectcreate SEG SEC1 %t1 \
|
|
# RUN: -segcreate SEG SEC2 %t3 \
|
|
# RUN: -sectcreate SEG SEC1 %t2 \
|
|
# RUN: -add_empty_section __DATA __data \
|
|
# RUN: -o %t %t.o
|
|
# RUN: llvm-objdump -s %t | FileCheck %s
|
|
|
|
## -dead_strip does not strip -sectcreate sections,
|
|
## but also doesn't set S_ATTR_NO_DEAD_STRIP on them.
|
|
# RUN: %lld -dead_strip \
|
|
# RUN: -sectcreate SEG SEC1 %t1 \
|
|
# RUN: -segcreate SEG SEC2 %t3 \
|
|
# RUN: -sectcreate SEG SEC1 %t2 \
|
|
# RUN: -add_empty_section SEG SEC1 \
|
|
# RUN: -o %t %t.o
|
|
# RUN: llvm-objdump -s %t | FileCheck --check-prefix=STRIPPED %s
|
|
# RUN: llvm-readobj --sections %t | FileCheck --check-prefix=STRIPPEDSEC %s
|
|
|
|
# RUN: %lld -add_empty_section foo bar -o %t %t.o
|
|
# RUN: llvm-readobj --sections %t | FileCheck --check-prefix=EMPTYSECTION %s
|
|
|
|
# RUN: %lld -sectcreate SEG SEC1 %t1 -add_empty_section SEG SEC1 -o %t %t.o
|
|
# RUN: llvm-readobj --sections %t | FileCheck --check-prefix=CREATEDANDEMPTY %s
|
|
|
|
# CHECK: Contents of section __TEXT,__text:
|
|
# CHECK: Contents of section __DATA,__data:
|
|
# CHECK: my string!.
|
|
# CHECK: Contents of section SEG,SEC1:
|
|
# CHECK: -sectcreate 1.1.
|
|
# CHECK: -sectcreate 1.2.
|
|
# CHECK: Contents of section SEG,SEC2:
|
|
# CHECK: -sectcreate 2.
|
|
|
|
# STRIPPED: Contents of section __TEXT,__text:
|
|
# STRIPPED-NOT: Contents of section __DATA,__data:
|
|
# STRIPPED-NOT: my string!.
|
|
# STRIPPED: Contents of section SEG,SEC1:
|
|
# STRIPPED: -sectcreate 1.1.
|
|
# STRIPPED: -sectcreate 1.2.
|
|
# STRIPPED: Contents of section SEG,SEC2:
|
|
# STRIPPED: -sectcreate 2.
|
|
|
|
# STRIPPEDSEC-NOT: NoDeadStrip
|
|
|
|
# EMPTYSECTION: Name: bar
|
|
# EMPTYSECTION: Segment: foo
|
|
# EMPTYSECTION: Size: 0x0
|
|
# EMPTYSECTION-NOT: Name:
|
|
|
|
# CREATEDANDEMPTY: Name: SEC1
|
|
# CREATEDANDEMPTY: Segment: SEG
|
|
# CREATEDANDEMPTY: Size: 0x10
|
|
# CREATEDANDEMPTY-NOT: Name:
|
|
|
|
.text
|
|
.global _main
|
|
_main:
|
|
mov $0, %eax
|
|
ret
|
|
|
|
.data
|
|
.global my_string
|
|
my_string:
|
|
.string "my string!"
|
|
|
|
.subsections_via_symbols
|