clang-tidy: Initial commit

Added initial .clang-tidy configuration file with recommended C++ checks
aligned with the OpenBMC-approved checklist. This setup enforces modern
C++ best practices and helps catch common issues early in development.

Change-Id: If06b7cf5254db61a901529c050079a30a2c92278
Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
1 file changed
tree: a15827dd1eda27f16f19e3b2f3f006e7a6ba0790
  1. src/
  2. test/
  3. .clang-format
  4. .clang-tidy
  5. .gitignore
  6. .lcovrc
  7. LICENSE
  8. meson.build
  9. meson.options
  10. OWNERS
  11. README.md
README.md

ipmi-blob-tool

ipmi-blob-tool is a host-side tool that speaks the BLOB protocol over IPMI.

Dependencies

Test cases require google{test,mock}, valgrind, and lcov.

Building

For a standard release build, you want something like:

./bootstrap.sh
./configure --disable-tests
make
make install

For a test / debug build, a typical configuration is

./bootstrap.sh
./configure --enable-tests --enable-coverage --enable-valgrind
make
make check
make check-valgrind
make check-code-coverage