QP/C++ 6.9.3
quit.hpp
Go to the documentation of this file.
1 #ifndef QUIT_HPP
39 #define QUIT_HPP
40 
41 // macro to check an expectation
42 #define EXPECT(cond_) ((cond_) \
43  ? (void)0 : QP::QUIT_fail_(#cond_, &Q_this_module_[0], __LINE__))
44 
45 namespace QP {
46 
47 void TEST(char const *title);
48 void QUIT_fail_(char const *cond, char const *module, int line);
49 void onRunTests(void); // user-defined callback to run the tests
50 
51 } // namespace QP
52 
53 #include "qf_port.hpp" // QF/C++ port from the port directory
54 #include "qassert.h" // QP embedded systems-friendly assertions
55 
56 #ifdef Q_SPY /* software tracing enabled? */
57 #include "qs_port.hpp" // QS/C port from the port directory
58 #else
59 #include "qs_dummy.hpp" // QS/C dummy (inactive) interface
60 #endif
61 
62 #endif // QUIT_HPP
63 
namespace associated with the QP/C++ framework
Definition: struct.dox:1
void TEST(char const *title)
void onRunTests(void)
void QUIT_fail_(char const *cond, char const *module, int line)
Customizable and memory-efficient assertions for embedded systems.
Dummy definitions of the QS macros that avoid code generation from the QS instrumentation.
QS/C++ port to a 32-bit CPU, generic compiler.