rusefi-1/unit_tests/tests/tests.mk

97 lines
3.3 KiB
Makefile
Raw Normal View History

2019-06-15 13:43:30 -07:00
TESTS_SRC_CPP = \
2020-05-09 21:59:32 -07:00
tests/trigger/test_symmetrical_crank.cpp \
tests/trigger/test_trigger_decoder.cpp \
tests/trigger/test_trigger_noiseless.cpp \
tests/trigger/test_trigger_multi_sync.cpp \
tests/trigger/test_miata_na_tdc.cpp \
2020-05-09 21:59:32 -07:00
tests/trigger/test_cam_vvt_input.cpp \
2020-05-09 22:21:54 -07:00
tests/trigger/test_2jz_vvt.cpp \
tests/trigger/test_real_cranking_miata_NA.cpp \
tests/trigger/test_real_cranking_miata_na6.cpp \
2021-07-21 20:08:56 -07:00
tests/trigger/test_real_cranking_nissan_vq40.cpp \
2021-06-25 21:51:09 -07:00
tests/trigger/test_real_volkswagen.cpp \
tests/trigger/test_real_nb2_cranking.cpp \
tests/trigger/test_real_gm_24x.cpp \
2021-11-24 18:53:16 -08:00
tests/trigger/test_map_cam.cpp \
tests/trigger/test_rpm_multiplier.cpp \
2021-02-08 13:16:26 -08:00
tests/trigger/test_quad_cam.cpp \
2021-07-02 11:56:12 -07:00
tests/trigger/test_nissan_vq_vvt.cpp \
2021-05-25 14:15:48 -07:00
tests/trigger/test_override_gaps.cpp \
tests/trigger/test_injection_scheduling.cpp \
tests/ignition_injection/injection_mode_transition.cpp \
2020-07-19 10:33:02 -07:00
tests/ignition_injection/test_startOfCrankingPrimingPulse.cpp \
2020-07-19 15:05:31 -07:00
tests/ignition_injection/test_multispark.cpp \
2020-07-19 10:45:42 -07:00
tests/ignition_injection/test_ignition_scheduling.cpp \
2020-07-19 10:50:43 -07:00
tests/ignition_injection/test_fuelCut.cpp \
2020-08-10 22:11:25 -07:00
tests/ignition_injection/test_fuel_computer.cpp \
tests/ignition_injection/test_injector_model.cpp \
tests/lua/test_lua_basic.cpp \
2021-11-05 13:08:48 -07:00
tests/lua/test_lua_with_engine.cpp \
tests/lua/test_lua_hooks.cpp \
2021-02-08 12:59:40 -08:00
tests/sensor/test_cj125.cpp \
tests/test_change_engine_type.cpp \
tests/util/test_scaled_channel.cpp \
2021-03-11 21:43:48 -08:00
tests/util/test_timer.cpp \
tests/system/test_periodic_thread_controller.cpp \
2019-06-15 13:43:30 -07:00
tests/test_util.cpp \
tests/test_start_stop.cpp \
tests/test_hardware_reinit.cpp \
2019-06-15 13:43:30 -07:00
tests/test_ion.cpp \
2019-11-23 19:55:21 -08:00
tests/test_aux_valves.cpp \
2019-06-15 13:43:30 -07:00
tests/test_hip9011.cpp \
tests/test_engine_math.cpp \
tests/test_fasterEngineSpinningUp.cpp \
2020-07-19 10:26:46 -07:00
tests/test_dwell_corner_case_issue_796.cpp \
2019-06-15 13:43:30 -07:00
tests/test_idle_controller.cpp \
tests/test_issue_898.cpp \
tests/test_etb.cpp \
tests/test_dc_motor.cpp \
tests/test_fan_control.cpp \
tests/test_main_relay.cpp \
tests/test_vvt.cpp \
tests/test_launch.cpp \
2019-06-15 13:43:30 -07:00
tests/test_fuel_map.cpp \
2021-02-08 12:59:40 -08:00
tests/ignition_injection/test_fuel_wall_wetting.cpp \
tests/test_one_cylinder_logic.cpp \
tests/test_tunerstudio.cpp \
2019-06-15 13:43:30 -07:00
tests/test_pwm_generator.cpp \
tests/test_logic_expression.cpp \
tests/test_log_buffer.cpp \
2019-06-15 13:43:30 -07:00
tests/test_signal_executor.cpp \
tests/test_cpp_memory_layout.cpp \
2019-06-15 13:43:30 -07:00
tests/test_sensors.cpp \
tests/test_pid_auto.cpp \
2019-09-29 11:36:41 -07:00
tests/test_pid.cpp \
2019-06-15 13:43:30 -07:00
tests/test_accel_enrichment.cpp \
tests/test_tacho.cpp \
tests/test_gpiochip.cpp \
tests/test_deadband.cpp \
tests/test_knock.cpp \
tests/sensor/basic_sensor.cpp \
tests/sensor/func_sensor.cpp \
tests/sensor/function_pointer_sensor.cpp \
tests/sensor/mock_sensor.cpp \
tests/sensor/sensor_reader.cpp \
tests/sensor/lin_func.cpp \
tests/sensor/resist_func.cpp \
tests/sensor/therm_func.cpp \
tests/sensor/func_chain.cpp \
tests/sensor/redundant.cpp \
tests/sensor/test_sensor_init.cpp \
tests/sensor/table_func.cpp \
2021-02-08 12:59:40 -08:00
tests/util/test_closed_loop_controller.cpp \
tests/test_stft.cpp \
tests/test_boost.cpp \
tests/test_gppwm.cpp \
tests/test_hpfp.cpp \
2020-05-05 05:01:40 -07:00
tests/test_fuel_math.cpp \
tests/test_binary_log.cpp \
tests/test_dynoview.cpp \
tests/test_gpio.cpp \
tests/test_limp.cpp \
2021-02-08 12:59:40 -08:00
tests/trigger/test_all_triggers.cpp \
tests/test_stepper.cpp \
2021-08-01 20:21:53 -07:00
tests/sensor/test_frequency_sensor.cpp \
tests/sensor/test_turbocharger_speed_converter.cpp \
Vehicle speed switching to frequency sensor #3106 (#3148) * Add vehicle_speed_converter.h with realization. * Add test_vehicle_speed_converter.cpp with realization. * Add test_vehicle_speed_converter.cpp to Makefile * Edit "VehicleSpeedSensor" from function pointer sensor to frequency sensor * Fix "VehicleSpeedSensor" init function args * Remove "VehicleSpeedConverter" empty constructor * Edit vehicle_speed_converter.h code style * Fix args and engine injection in "VehicleSpeedSensor" initialization procedure * Remove old "Vehicle Speed" module initialization * Revert "Remove old "Vehicle Speed" module initialization" This reverts commit 100b7caa8c615c20eed3d0c23a49824b4e556148. * Remove old "Vehicle Speed" module initialization pieces * Revert "Revert "Remove old "Vehicle Speed" module initialization"" This reverts commit f559a726f1f7f5a7acacd1b6517e571743e84327. * Debug changes * Revert "Debug changes" This reverts commit f7e2be1a8a46c6f3f93f14f002b2f2db539da8e2. * Another debug changes * More debug changes * And more debug changes. * Revert "Another debug changes" This reverts commit 914fbb1df42c37e4b5ecbb119bb45e7cffdf4064. * Revert "More debug changes" This reverts commit 0b2d96d461c3cd9b0f1ae97ed110b8effe6b0cc6. * Revert "And more debug changes." This reverts commit 06ae8daded0e6e1c025e4e5058b47283f4adfe92. * Add "Vehicle Speed" sensor reconfiguration * Revert "Add "Vehicle Speed" sensor reconfiguration" This reverts commit a089a6d563dd710004ce1a7da1744b0b4b90c3b1. * Revert "Revert "Add "Vehicle Speed" sensor reconfiguration"" This reverts commit 7b2bb8af4b3caa547236ca59e4c4bdb3ac1200cc. * Debug changes * Another debug changes * Fix another debug changes * Another debug changes 2 * Revert "Another debug changes 2" This reverts commit cfad55141eec125b2f1d35fb95d9f46b54f666b6. * Revert "Fix another debug changes" This reverts commit 9bc2c74a3be6fd896827ff48cf4580e7657529c0. * Revert "Another debug changes" This reverts commit 4337ed8cad8dff508d093944eb3f75e9a69e4a77. * Edit class FrequencySensor, make it more RAII * Debug changes * Debug changes 2 * Debug changes 3 * Revert "Debug changes 3" This reverts commit 52a7054c122b5157540fe45a055a84b57478d722. * Revert "Debug changes 2" This reverts commit dec79fb913344ccb4b8614910ad62e6c129a243e. * Revert "Debug changes" This reverts commit eb08d7a529b55ba397a7dd2c154b76eab42f212b. * Revert "Edit class FrequencySensor, make it more RAII" This reverts commit 3a0bb1d3f1dd23c1b04e4cc1c526cfdc67ae86a3. * Remove VSS pin definition in "Citroen Berlingo" engine config. This reverts commit 3a0bb1d3f1dd23c1b04e4cc1c526cfdc67ae86a3. * Remove VSS pin definition in "Dodge Neon" engine config Co-authored-by: alxrMironov <330OMcorporative>
2021-08-23 21:55:41 -07:00
tests/sensor/test_vehicle_speed_converter.cpp