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).
58 lines
2.0 KiB
C++
58 lines
2.0 KiB
C++
// Test case from https://github.com/llvm/llvm-project/issues/59999
|
|
//
|
|
// RUN: rm -rf %t
|
|
// RUN: mkdir -p %t
|
|
// RUN: split-file %s %t
|
|
//
|
|
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Module.cppm \
|
|
// RUN: -emit-module-interface -o %t/Module.pcm
|
|
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Object.cppm \
|
|
// RUN: -fmodule-file=Module=%t/Module.pcm -emit-module-interface -o %t/Object.pcm
|
|
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Object.pcm \
|
|
// RUN: -fmodule-file=Module=%t/Module.pcm -emit-llvm -o - | FileCheck %t/Object.cppm
|
|
|
|
// Test again with reduced BMI.
|
|
// RUN: rm -rf %t
|
|
// RUN: mkdir -p %t
|
|
// RUN: split-file %s %t
|
|
//
|
|
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Module.cppm \
|
|
// RUN: -emit-reduced-module-interface -o %t/Module.pcm
|
|
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Object.cppm \
|
|
// RUN: -fmodule-file=Module=%t/Module.pcm -emit-module-interface -o %t/Object.pcm
|
|
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Object.pcm \
|
|
// RUN: -fmodule-file=Module=%t/Module.pcm -emit-llvm -o - | FileCheck %t/Object.cppm
|
|
|
|
|
|
//--- Module.cppm
|
|
export module Module;
|
|
|
|
export template <class ObjectType> bool ModuleRegister() { return true; };
|
|
|
|
export struct ModuleEntry {
|
|
static const bool bRegistered;
|
|
};
|
|
|
|
const bool ModuleEntry::bRegistered = ModuleRegister<ModuleEntry>();
|
|
|
|
//--- Object.cppm
|
|
export module Object;
|
|
|
|
import Module;
|
|
|
|
export template <class ObjectType> bool ObjectRegister() { return true; }
|
|
export struct NObject {
|
|
static const bool bRegistered;
|
|
};
|
|
export struct ObjectModuleEntry {
|
|
static const bool bRegistered;
|
|
};
|
|
|
|
// This function is also required for crash
|
|
const bool NObject::bRegistered = ObjectRegister<NObject>();
|
|
// One another function, that helps clang crash
|
|
const bool ObjectModuleEntry::bRegistered = ModuleRegister<ObjectModuleEntry>();
|
|
|
|
// Check that the LLVM IR is generated correctly instead of crashing.
|
|
// CHECK: define{{.*}}@_ZGIW6Object
|