AP_gtest: enable testing for exit conditions, SITL unit tests

This commit is contained in:
Josh Henderson 2021-08-29 03:54:25 -04:00 committed by Andrew Tridgell
parent 1ae8385a0f
commit ca1894b350

View File

@ -5,6 +5,7 @@
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#include <gtest/gtest.h>
#include <gtest/gtest-spi.h>
#define AP_GTEST_PRINTATBLE_PARAM_MEMBER(class_name_, printable_member_) \
@ -14,6 +15,27 @@
return os << param.printable_member_; \
}
/*
* Override the WEAK version of AP_HAL_SITL/system.cpp panic() instead of staying in an infinite loop
* This is used by the gtest suite to test for an exit signal caused by a test statement and continue testing
* Printing to stderr is required for gtest matching
*/
#define AP_GTEST_PANIC() \
void AP_HAL::panic(const char *errormsg, ...) \
{ \
va_list ap; \
auto outputs = {stdout, stderr}; \
for( auto output : outputs) { \
fflush(stdout); \
fprintf(output, "PANIC: "); \
va_start(ap, errormsg); \
vfprintf(output, errormsg, ap); \
va_end(ap); \
fprintf(output, "\n"); \
} \
abort(); \
}
#define AP_GTEST_MAIN() \
int main(int argc, char *argv[]) \
{ \