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.3 KiB
C++
41 lines
1.3 KiB
C++
// RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -o %t && not %run %t >%t.out 2>&1
|
|
// RUN: FileCheck %s < %t.out && FileCheck %s < %t.out
|
|
|
|
// XFAIL: target=mips{{.*}}
|
|
|
|
#include <assert.h>
|
|
#include <wchar.h>
|
|
|
|
#include <sanitizer/msan_interface.h>
|
|
|
|
int main() {
|
|
const wchar_t *s = L"abc";
|
|
assert(wcslen(s) == 3);
|
|
|
|
wchar_t s2[5];
|
|
assert(wcsncpy(s2, s, 3) == s2);
|
|
assert(__msan_test_shadow(&s2, 5 * sizeof(wchar_t)) == 3 * sizeof(wchar_t));
|
|
assert(wcsncpy(s2, s, 5) == s2);
|
|
assert(__msan_test_shadow(&s2, 5 * sizeof(wchar_t)) == -1);
|
|
|
|
wchar_t s3[5];
|
|
assert(wcsncpy(s3, s, 2) == s3);
|
|
assert(__msan_test_shadow(&s3, 5 * sizeof(wchar_t)) == 2 * sizeof(wchar_t));
|
|
|
|
__msan_allocated_memory(&s2[1], sizeof(wchar_t));
|
|
wchar_t s4[5];
|
|
assert(wcsncpy(s4, s2, 3) == s4);
|
|
__msan_check_mem_is_initialized(&s4, sizeof(s4));
|
|
}
|
|
// CHECK: Uninitialized bytes in __msan_check_mem_is_initialized
|
|
// CHECK: WARNING: MemorySanitizer: use-of-uninitialized-value
|
|
// CHECK: in main {{.*}}wcsncpy.cpp:28
|
|
|
|
// CHECK: Uninitialized value was stored to memory at
|
|
// CHECK: in {{[^\s]*}}wcsncpy
|
|
// CHECK: in main {{.*}}wcsncpy.cpp:27
|
|
|
|
// CHECK: Memory was marked as uninitialized
|
|
// CHECK: in __msan_allocated_memory
|
|
// CHECK: in main {{.*}}wcsncpy.cpp:25
|