| commit | eb133de9a147746274516002e3147454e7639c04 | [log] [tgz] |
|---|---|---|
| author | Jayanth Othayoth <ojayanth@gmail.com> | Thu Dec 25 06:12:52 2025 -0600 |
| committer | Jayanth Othayoth <ojayanth@gmail.com> | Thu Dec 25 06:26:51 2025 -0600 |
| tree | 7cf2665f1dc285259e4665733540595fded4d54c | |
| parent | fae994be9921c780f41f713bab41c83e73bc1247 [diff] |
clang-tidy: delete unintended default constructor Mark the class’s default constructor as `=delete` to prevent accidental default construction and align with clang-tidy guidance. This enforces explicit initialization and avoids misuse of incomplete/invalid state. No functional changes. Change-Id: Ia83ec93592cd1a1f18f1dfa687fbcd6fd261a835 Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
ipmi-blob-tool is a host-side tool that speaks the BLOB protocol over IPMI.
Test cases require google{test,mock}, valgrind, and lcov.
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