improving unit_tests folder structure
This commit is contained in:
parent
86a2d1e8e9
commit
20776af960
|
@ -6,7 +6,7 @@ public class TriggerMetaGenerator {
|
|||
public static void main(String[] a) throws IOException {
|
||||
ReaderStateImpl reader = new ReaderStateImpl();
|
||||
reader.setDefinitionInputFile("integration/rusefi_config_trigger.txt");
|
||||
reader.addCHeaderDestination("../unit_tests/trigger_meta_generated.h");
|
||||
reader.addCHeaderDestination("../unit_tests/test-framework/trigger_meta_generated.h");
|
||||
reader.addJavaDestination("../java_tools/trigger-image/src/main/java/com/rusefi/config/generated/TriggerMeta.java");
|
||||
|
||||
reader.doJob();
|
||||
|
|
|
@ -49,6 +49,7 @@ INCDIR += \
|
|||
$(UNIT_TESTS_DIR) \
|
||||
$(ALLINC) \
|
||||
$(PROJECT_DIR)/config/boards/hellen \
|
||||
$(FRAMEWORK_INC) \
|
||||
$(UNIT_TESTS_DIR)/test_data_structures \
|
||||
$(UNIT_TESTS_DIR)/chibios-mock \
|
||||
$(UNIT_TESTS_DIR)/native \
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
FRAMEWORK_SRC_CPP = unit_test_framework.cpp \
|
||||
engine_test_helper.cpp \
|
||||
logicdata_csv_reader.cpp \
|
||||
FRAMEWORK_SRC_CPP = test-framework/unit_test_framework.cpp \
|
||||
test-framework/engine_test_helper.cpp \
|
||||
test-framework/logicdata_csv_reader.cpp \
|
||||
boards.cpp \
|
||||
global_execution_queue.cpp \
|
||||
test-framework/global_execution_queue.cpp \
|
||||
test_basic_math/test_find_index.cpp \
|
||||
test_basic_math/test_interpolation_3d.cpp \
|
||||
|
||||
FRAMEWORK_INC = test-framework
|
Loading…
Reference in New Issue