commit | 7100d92e36d9d56a63c0523556c5cdd3183a905a | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Aug 24 17:08:07 2022 -0500 |
committer | William A. Kennington III <wak@google.com> | Wed Aug 24 22:18:25 2022 +0000 |
tree | 2cb02254d4db92f0c4c8d7347a89a7e4ca787b3f | |
parent | b46746057033a0cab43aafa9b3cabfc2fa3e3540 [diff] |
test/catch2: remove completely The catch2 subproject was removed and all users of it appear gone, so remove this non-built cpp part as well. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I80c6db3ac4d0c4074a1fc708db9096445227bb31
stdplus is a c++ project containing commonly used classes and functions for the Linux platform. Note the goals of this project are to implement only the minimum set of features needed by the OpenBMC project and other users. You may find the included set of functions currently quite sparse.
This project provides the following primitives:
Test cases require google{test,mock}, valgrind, and lcov. It also requires the Meson Build System which can be installed following the instructions at mesonbuild.com.
For a standard release build, you want something like:
meson setup -Dexamples=false -Dtests=disabled builddir ninja -C builddir ninja -C builddir install
For a test / debug build, a typical configuration is
meson setup -Dtests=enabled builddir meson test -C builddir