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).
57 lines
1.4 KiB
C
57 lines
1.4 KiB
C
// RUN: %libomptarget-compile-run-and-check-generic
|
|
|
|
// REQUIRES: libc
|
|
|
|
#include <assert.h>
|
|
#include <omp.h>
|
|
#include <stdio.h>
|
|
|
|
#pragma omp begin declare variant match(device = {kind(gpu)})
|
|
// Extension provided by the 'libc' project.
|
|
unsigned long long __llvm_omp_host_call(void *fn, void *args, size_t size);
|
|
#pragma omp declare target to(__llvm_omp_host_call) device_type(nohost)
|
|
#pragma omp end declare variant
|
|
|
|
#pragma omp begin declare variant match(device = {kind(cpu)})
|
|
// Dummy host implementation to make this work for all targets.
|
|
unsigned long long __llvm_omp_host_call(void *fn, void *args, size_t size) {
|
|
return ((unsigned long long (*)(void *))fn)(args);
|
|
}
|
|
#pragma omp end declare variant
|
|
|
|
long long foo(void *data) { return -1; }
|
|
|
|
void *fn_ptr = NULL;
|
|
#pragma omp declare target to(fn_ptr)
|
|
|
|
int main() {
|
|
fn_ptr = (void *)&foo;
|
|
#pragma omp target update to(fn_ptr)
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
#pragma omp target
|
|
{
|
|
long long res = __llvm_omp_host_call(fn_ptr, NULL, 0);
|
|
assert(res == -1 && "RPC call failed\n");
|
|
}
|
|
|
|
for (int j = 0; j < 128; ++j) {
|
|
#pragma omp target nowait
|
|
{
|
|
long long res = __llvm_omp_host_call(fn_ptr, NULL, 0);
|
|
assert(res == -1 && "RPC call failed\n");
|
|
}
|
|
}
|
|
#pragma omp taskwait
|
|
|
|
#pragma omp target
|
|
{
|
|
long long res = __llvm_omp_host_call(fn_ptr, NULL, 0);
|
|
assert(res == -1 && "RPC call failed\n");
|
|
}
|
|
}
|
|
|
|
// CHECK: PASS
|
|
puts("PASS");
|
|
}
|