googletest
This commit is contained in:
parent
e5695c36ee
commit
2b8f586276
|
@ -110,6 +110,7 @@ CSRC = $(UTILSRC) \
|
||||||
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
|
# C++ sources that can be compiled in ARM or THUMB mode depending on the global
|
||||||
# setting.
|
# setting.
|
||||||
CPPSRC = $(UTILSRC_CPP) \
|
CPPSRC = $(UTILSRC_CPP) \
|
||||||
|
gtest-all.cpp \
|
||||||
$(CONTROLLERS_ALGO_SRC_CPP) \
|
$(CONTROLLERS_ALGO_SRC_CPP) \
|
||||||
$(TRIGGER_DECODERS_SRC_CPP) \
|
$(TRIGGER_DECODERS_SRC_CPP) \
|
||||||
$(ENGINES_SRC_CPP) \
|
$(ENGINES_SRC_CPP) \
|
||||||
|
@ -124,6 +125,7 @@ CPPSRC = $(UTILSRC_CPP) \
|
||||||
$(TRIGGER_SRC_CPP) \
|
$(TRIGGER_SRC_CPP) \
|
||||||
main.cpp
|
main.cpp
|
||||||
|
|
||||||
|
|
||||||
# C sources to be compiled in ARM mode regardless of the global setting.
|
# C sources to be compiled in ARM mode regardless of the global setting.
|
||||||
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
# NOTE: Mixing ARM and THUMB mode enables the -mthumb-interwork compiler
|
||||||
# option that results in lower performance and larger code size.
|
# option that results in lower performance and larger code size.
|
||||||
|
@ -168,6 +170,8 @@ INCDIR = . \
|
||||||
$(PROJECT_DIR)/hw_layer/algo \
|
$(PROJECT_DIR)/hw_layer/algo \
|
||||||
$(PROJECT_DIR)/hw_layer/sensors/ \
|
$(PROJECT_DIR)/hw_layer/sensors/ \
|
||||||
test_data_structures \
|
test_data_structures \
|
||||||
|
googletest/googletest \
|
||||||
|
googletest/googletest/include \
|
||||||
test_basic_math
|
test_basic_math
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
// this is a work-around since our Makefile does not recognice .cc format
|
||||||
|
// todo: adjust the makefile so that we can remove this
|
||||||
|
|
||||||
|
#include "googletest/googletest/src/gtest.cc"
|
||||||
|
#include "googletest/googletest/src/gtest-death-test.cc"
|
||||||
|
#include "googletest/googletest/src/gtest-filepath.cc"
|
||||||
|
#include "googletest/googletest/src/gtest-port.cc"
|
||||||
|
#include "googletest/googletest/src/gtest-printers.cc"
|
||||||
|
#include "googletest/googletest/src/gtest-test-part.cc"
|
||||||
|
#include "googletest/googletest/src/gtest-typed-test.cc"
|
|
@ -23,7 +23,6 @@
|
||||||
#include "engine_configuration.h"
|
#include "engine_configuration.h"
|
||||||
|
|
||||||
#include "test_idle_controller.h"
|
#include "test_idle_controller.h"
|
||||||
#include "test_c125.h"
|
|
||||||
#include "afm2mapConverter.h"
|
#include "afm2mapConverter.h"
|
||||||
#include "test_signal_executor.h"
|
#include "test_signal_executor.h"
|
||||||
#include "trigger_central.h"
|
#include "trigger_central.h"
|
||||||
|
@ -34,6 +33,7 @@
|
||||||
#include "engine_math.h"
|
#include "engine_math.h"
|
||||||
#include "test_engine_math.h"
|
#include "test_engine_math.h"
|
||||||
#include "test_trigger_decoder.h"
|
#include "test_trigger_decoder.h"
|
||||||
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
typedef int32_t msg_t;
|
typedef int32_t msg_t;
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ int getRevolutionCounter(void) {
|
||||||
}
|
}
|
||||||
extern bool printTriggerDebug;
|
extern bool printTriggerDebug;
|
||||||
|
|
||||||
int main(void) {
|
GTEST_API_ int main(int argc, char **argv) {
|
||||||
// printTriggerDebug = true;
|
// printTriggerDebug = true;
|
||||||
|
|
||||||
testMisc();
|
testMisc();
|
||||||
|
@ -125,13 +125,14 @@ int main(void) {
|
||||||
|
|
||||||
testTriggerDecoder();
|
testTriggerDecoder();
|
||||||
|
|
||||||
testCJ125();
|
|
||||||
|
|
||||||
// resizeMap();
|
// resizeMap();
|
||||||
printf("Success 20190103\r\n");
|
printf("Success 20190103\r\n");
|
||||||
printAllTriggers();
|
printAllTriggers();
|
||||||
// printConvertedTable();
|
// printConvertedTable();
|
||||||
return EXIT_SUCCESS;
|
testing::InitGoogleTest(&argc, argv);
|
||||||
|
return RUN_ALL_TESTS();
|
||||||
}
|
}
|
||||||
|
|
||||||
void print(const char *format, ...) {
|
void print(const char *format, ...) {
|
||||||
|
|
|
@ -8,6 +8,4 @@
|
||||||
#ifndef TEST_C125_H_
|
#ifndef TEST_C125_H_
|
||||||
#define TEST_C125_H_
|
#define TEST_C125_H_
|
||||||
|
|
||||||
void testCJ125();
|
|
||||||
|
|
||||||
#endif /* TEST_C125_H_ */
|
#endif /* TEST_C125_H_ */
|
||||||
|
|
|
@ -5,14 +5,11 @@
|
||||||
* @author Andrey Belomutskiy, (c) 2012-2019
|
* @author Andrey Belomutskiy, (c) 2012-2019
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include "test_c125.h"
|
#include "test_c125.h"
|
||||||
#include "CJ125.h"
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
void testCJ125() {
|
|
||||||
printf("====================================================================================== testCJ125\r\n");
|
|
||||||
|
|
||||||
|
TEST(testCJ125, todo) {
|
||||||
|
EXPECT_EQ(1, 2 - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
#include "pid_auto_tune.h"
|
#include "pid_auto_tune.h"
|
||||||
#include "unit_test_framework.h"
|
#include "unit_test_framework.h"
|
||||||
#include "cyclic_buffer.h"
|
#include "cyclic_buffer.h"
|
||||||
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
efitimems_t mockTimeMs = 0;
|
efitimems_t mockTimeMs = 0;
|
||||||
|
|
||||||
|
@ -159,9 +160,7 @@ static void testPidAutoZigZagGrowingOsc() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void testPidZeroLine() {
|
TEST(pidAutoTune, zeroLine) {
|
||||||
printf("*************************************************** testPidAutoZigZagGrowingOsc\r\n");
|
|
||||||
|
|
||||||
mockTimeMs = 0;
|
mockTimeMs = 0;
|
||||||
|
|
||||||
PID_AutoTune at;
|
PID_AutoTune at;
|
||||||
|
@ -182,8 +181,7 @@ static void testPidZeroLine() {
|
||||||
// nothing happens in this test since we do not allow time play a role
|
// nothing happens in this test since we do not allow time play a role
|
||||||
}
|
}
|
||||||
|
|
||||||
static void testPidDelayLine(void) {
|
TEST(pidAutoTune, delayLine) {
|
||||||
printf("*************************************************** testPidDelayLine\r\n");
|
|
||||||
|
|
||||||
static const int delayBufSize = 8;
|
static const int delayBufSize = 8;
|
||||||
|
|
||||||
|
@ -220,8 +218,6 @@ static void testPidDelayLine(void) {
|
||||||
void testPidAuto() {
|
void testPidAuto() {
|
||||||
printf("*************************************************** testPidAuto\r\n");
|
printf("*************************************************** testPidAuto\r\n");
|
||||||
|
|
||||||
testPidDelayLine();
|
|
||||||
testPidZeroLine();
|
|
||||||
testPidAutoZigZagStable();
|
testPidAutoZigZagStable();
|
||||||
|
|
||||||
testPidAutoZigZagGrowingOsc();
|
testPidAutoZigZagGrowingOsc();
|
||||||
|
|
Loading…
Reference in New Issue