μHAL (v2.8.17)
Part of the IPbus software repository
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
catch.cpp
Go to the documentation of this file.
1// The Catch implementation is compiled here. This is a standalone
2// translation unit to avoid recompiling it for every test change.
3
4#include <pybind11/embed.h>
5
6#ifdef _MSC_VER
7// Silence MSVC C++17 deprecation warning from Catch regarding std::uncaught_exceptions (up to
8// catch 2.0.1; this should be fixed in the next catch release after 2.0.1).
9# pragma warning(disable : 4996)
10#endif
11
12// Catch uses _ internally, which breaks gettext style defines
13#ifdef _
14# undef _
15#endif
16
17#define CATCH_CONFIG_RUNNER
18#include <catch.hpp>
19
20namespace py = pybind11;
21
22int main(int argc, char *argv[]) {
23 py::scoped_interpreter guard{};
24 auto result = Catch::Session().run(argc, argv);
25
26 return result < 0xff ? result : 0xff;
27}
int main(int argc, char *argv[])
Definition: catch.cpp:22