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).
61 lines
1.5 KiB
C
61 lines
1.5 KiB
C
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -O0 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
void use(void *);
|
|
|
|
void test_small(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_small()
|
|
int a[] = {1, 2, 3, 4};
|
|
// CHECK: call void @llvm.memcpy.{{.*}}
|
|
use(a);
|
|
}
|
|
|
|
void test_small_same(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_small_same()
|
|
char a[] = {'a', 'a', 'a', 'a'};
|
|
// CHECK: call void @llvm.memcpy.{{.*}}
|
|
use(a);
|
|
}
|
|
|
|
void test_different(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_different()
|
|
int a[] = {1, 2, 3, 4, 5, 6, 7, 8, 9};
|
|
// CHECK: call void @llvm.memcpy.{{.*}}
|
|
use(a);
|
|
}
|
|
|
|
void test_all_zeros(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_all_zeros()
|
|
int a[16] = {};
|
|
// CHECK: call void @llvm.memset.{{.*}}
|
|
use(a);
|
|
}
|
|
|
|
void test_all_a(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_all_a()
|
|
char a[] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
|
|
// CHECK: call void @llvm.memcpy.{{.*}}
|
|
use(a);
|
|
}
|
|
|
|
void test_most_zeros(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_most_zeros()
|
|
int a[16] = {0, 0, 1};
|
|
// CHECK: call void @llvm.memset.{{.*}}
|
|
// CHECK: store i32 1
|
|
use(a);
|
|
}
|
|
|
|
void test_most_a(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_most_a()
|
|
char a[] = "aaaaazaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
|
|
// CHECK: call void @llvm.memcpy.{{.*}}
|
|
use(a);
|
|
}
|
|
|
|
void test_pointers(void) {
|
|
// CHECK-LABEL: define{{.*}} void @test_pointers()
|
|
void *a[] = {&use, &use, &use, &use, &use, &use};
|
|
// CHECK: call void @llvm.memcpy.{{.*}}
|
|
use(a);
|
|
}
|