From 1361ff694547d74da4f457b7a41c46cb5caf040f Mon Sep 17 00:00:00 2001 From: Yael Date: Thu, 20 Aug 2026 21:05:52 +0000 Subject: [PATCH] TEMP scratch probe: prove both new lint behaviours fire in real CI Not for merge. One file, deliberately carrying two defects at once: a quoted public include (must turn lint (source conventions) RED) and deliberate mis-formatting (must make lint (clang-format, changed lines) print a diff and stay GREEN). Path matches no filter, so only the lint jobs run -- no test-cpu, no build-cuda. --- tests/format_probe.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/format_probe.cpp diff --git a/tests/format_probe.cpp b/tests/format_probe.cpp new file mode 100644 index 0000000..4d2318d --- /dev/null +++ b/tests/format_probe.cpp @@ -0,0 +1,13 @@ +// Scratch probe -- DO NOT MERGE. Exists only to prove two CI lints fire. +// +// 1. the quoted public include below must trip +// `lint (source conventions)` -> normalise-include-delimiters (RED) +// 2. the deliberate mis-formatting must make +// `lint (clang-format, changed lines)` report a diff and stay GREEN +#include "fastfields/core/defines.h" + +namespace ff { +int scratch_probe( int a,int b ) { + if(a>b){return a ;} + return b;} +} // namespace ff