18#if defined(MICRO_OS_PLUS_INCLUDE_CONFIG_H)
19#include <micro-os-plus/config.h>
29#pragma GCC diagnostic ignored "-Waggregate-return"
31#pragma clang diagnostic ignored "-Wc++98-compat"
32#pragma clang diagnostic ignored "-Wc++98-c++11-c++14-compat"
33#pragma clang diagnostic ignored "-Wunknown-warning-option"
42#if defined(MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS)
43 printf (
"%s\n", __PRETTY_FUNCTION__);
47#pragma GCC diagnostic push
49#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
54#if defined(MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS)
55 printf (
"%s\n", __PRETTY_FUNCTION__);
63#if !(defined(MICRO_OS_PLUS_INCLUDE_STARTUP) && defined(MICRO_OS_PLUS_TRACE))
64#if defined(MICRO_OS_PLUS_DEBUG)
66 for (
int i = 0; i < argc; ++i)
72 printf (
"'%s'", argv[i]);
79 for (
int i = 0; i < argc; ++i)
81 if (strcmp (argv[i],
"--verbose") == 0)
85 else if (strcmp (argv[i],
"--quiet") == 0)
89 else if (strcmp (argv[i],
"--silent") == 0)
100#if !(defined(MICRO_OS_PLUS_INCLUDE_STARTUP) && defined(MICRO_OS_PLUS_TRACE))
103#if defined(__clang__)
104 printf (
"Built with clang " __VERSION__);
105#elif defined(__GNUC__)
106 printf (
"Built with GCC " __VERSION__);
107#elif defined(_MSC_VER)
109 printf (
"Built with MSVC %d", _MSC_VER);
111 printf (
"Built with an unknown compiler");
113#if !(defined(__APPLE__) || defined(__linux__) || defined(__unix__) \
116#if defined(__ARM_PCS_VFP) || defined(__ARM_FP)
117 printf (
", with FP");
122#if defined(__EXCEPTIONS)
123 printf (
", with exceptions");
125 printf (
", no exceptions");
127#if defined(MICRO_OS_PLUS_DEBUG)
128 printf (
", with MICRO_OS_PLUS_DEBUG");
143#pragma GCC diagnostic pop
148 bool was_successful =
true;
162 suite->begin_test_suite ();
164 suite->end_test_suite ();
166 was_successful &= suite->was_successful ();
173 return was_successful ? 0 : 1;
180 printf (
"%s\n", __PRETTY_FUNCTION__);
185 suites_ =
new std::vector<test_suite_base*> ();
std::vector< test_suite_base * > * suites_
Pointer to array of registered test suites. Statically initialised to zero as BSS,...
constexpr const char * name(void)
test_suite_base * default_test_suite_
Pointer to the default test suite which groups the main tests.
int exit_code(void)
Return 0 if the all tests were successful, 1 otherwise.
void initialize(int argc, char *argv[], const char *name)
Pass the main arguments explicitly, if the default constructor was used.
void register_test_suite(test_suite_base *suite)
Called by test suite constructors to register them to the runner.
const char * default_suite_name_
Base class for all test suites.
test_suite_base * current_test_suite
verbosity
The verbosity levels.