micro-test-plus 3.2.2
The µTest++ Testing Framework
Loading...
Searching...
No Matches
test-runner.cpp
Go to the documentation of this file.
1/*
2 * This file is part of the µOS++ project (https://micro-os-plus.github.io/).
3 * Copyright (c) 2021 Liviu Ionescu. All rights reserved.
4 *
5 * Permission to use, copy, modify, and/or distribute this software
6 * for any purpose is hereby granted, under the terms of the MIT license.
7 *
8 * If a copy of the license was not distributed with this file, it can
9 * be obtained from https://opensource.org/licenses/mit.
10 *
11 * Major parts of the code are inspired from v1.1.8 of the Boost UT project,
12 * released under the terms of the Boost Version 1.0 Software License,
13 * which can be obtained from https://www.boost.org/LICENSE_1_0.txt.
14 */
15
16// ----------------------------------------------------------------------------
17
18#if defined(MICRO_OS_PLUS_INCLUDE_CONFIG_H)
19#include <micro-os-plus/config.h>
20#endif // MICRO_OS_PLUS_INCLUDE_CONFIG_H
21
23
24#include <stdio.h>
25#include <vector>
26
27// ----------------------------------------------------------------------------
28
29#pragma GCC diagnostic ignored "-Waggregate-return"
30#if defined(__clang__)
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"
34#endif
35
37{
38 // --------------------------------------------------------------------------
39
41 {
42#if defined(MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS)
43 printf ("%s\n", __PRETTY_FUNCTION__);
44#endif // MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS
45 }
46
47#pragma GCC diagnostic push
48#if defined(__clang__)
49#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
50#endif
51 void
52 test_runner::initialize (int argc, char* argv[], const char* name)
53 {
54#if defined(MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS)
55 printf ("%s\n", __PRETTY_FUNCTION__);
56#endif // MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS
57
58 argc_ = argc;
59 argv_ = argv;
60
62
63#if !(defined(MICRO_OS_PLUS_INCLUDE_STARTUP) && defined(MICRO_OS_PLUS_TRACE))
64#if defined(MICRO_OS_PLUS_DEBUG)
65 printf ("argv[");
66 for (int i = 0; i < argc; ++i)
67 {
68 if (i > 0)
69 {
70 printf (", ");
71 }
72 printf ("'%s'", argv[i]);
73 }
74 puts ("]");
75#endif // defined(MICRO_OS_PLUS_DEBUG)
76#endif // !defined(MICRO_OS_PLUS_INCLUDE_STARTUP)
77
79 for (int i = 0; i < argc; ++i)
80 {
81 if (strcmp (argv[i], "--verbose") == 0)
82 {
84 }
85 else if (strcmp (argv[i], "--quiet") == 0)
86 {
88 }
89 else if (strcmp (argv[i], "--silent") == 0)
90 {
92 }
93 }
94
95 // Pass the verbosity to the reporter.
96 reporter.verbosity = verbosity;
97
98 // ------------------------------------------------------------------------
99
100#if !(defined(MICRO_OS_PLUS_INCLUDE_STARTUP) && defined(MICRO_OS_PLUS_TRACE))
102 {
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)
108 // https://docs.microsoft.com/en-us/cpp/preprocessor/predefined-macros?view=msvc-170
109 printf ("Built with MSVC %d", _MSC_VER);
110#else
111 printf ("Built with an unknown compiler");
112#endif
113#if !(defined(__APPLE__) || defined(__linux__) || defined(__unix__) \
114 || defined(WIN32))
115// This is relevant only on bare-metal.
116#if defined(__ARM_PCS_VFP) || defined(__ARM_FP)
117 printf (", with FP");
118#else
119 printf (", no FP");
120#endif
121#endif
122#if defined(__EXCEPTIONS)
123 printf (", with exceptions");
124#else
125 printf (", no exceptions");
126#endif
127#if defined(MICRO_OS_PLUS_DEBUG)
128 printf (", with MICRO_OS_PLUS_DEBUG");
129#endif
130 puts (".");
131 }
132#endif // !defined(MICRO_OS_PLUS_INCLUDE_STARTUP)
133
134 // ------------------------------------------------------------------------
135
138
139 // Deferred to first test case or test suite end, to allow various
140 // initialisations to display their messages.
141 // default_test_suite_->begin_test_suite ();
142 }
143#pragma GCC diagnostic pop
144
145 int
147 {
148 bool was_successful = true;
149
150 if (!default_test_suite_->unused ())
151 {
152 default_test_suite_->end_test_suite ();
153 was_successful = default_test_suite_->was_successful ();
154 }
155
156 if (suites_ != nullptr)
157 {
158 for (auto suite : *suites_)
159 {
160 current_test_suite = suite;
161
162 suite->begin_test_suite ();
163 suite->run ();
164 suite->end_test_suite ();
165
166 was_successful &= suite->was_successful ();
167 }
168 if (reporter.verbosity != verbosity::silent)
169 {
170 // printf ("\n");
171 }
172 }
173 return was_successful ? 0 : 1;
174 }
175
176 void
178 {
179#if 0 // defined(MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS)
180 printf ("%s\n", __PRETTY_FUNCTION__);
181#endif // MICRO_OS_PLUS_TRACE_MICRO_TEST_PLUS
182
183 if (suites_ == nullptr)
184 {
185 suites_ = new std::vector<test_suite_base*> ();
186 }
187 suites_->push_back (suite);
188 }
189
190 void
192 {
193 ::abort ();
194 }
195
196 // --------------------------------------------------------------------------
197} // namespace micro_os_plus::micro_test_plus
198
199// ----------------------------------------------------------------------------
std::vector< test_suite_base * > * suites_
Pointer to array of registered test suites. Statically initialised to zero as BSS,...
constexpr const char * name(void)
Definition test-runner.h:88
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.
Base class for all test suites.
Definition test-suite.h:50
verbosity
The verbosity levels.