From 5f65104bf81ce79f69f5ab87caaa3f866d361b29 Mon Sep 17 00:00:00 2001 From: rusEfi Date: Wed, 29 Oct 2014 08:03:07 -0500 Subject: [PATCH] auto-sync --- unit_tests/test.mk | 4 ++-- .../{test_idle_controller.c => test_idle_controller.cpp} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename unit_tests/{test_idle_controller.c => test_idle_controller.cpp} (75%) diff --git a/unit_tests/test.mk b/unit_tests/test.mk index 88a1520dac..c1dc9e3460 100644 --- a/unit_tests/test.mk +++ b/unit_tests/test.mk @@ -1,11 +1,11 @@ -TEST_SRC_C = boards.c \ - test_idle_controller.c +TEST_SRC_C = boards.c TEST_SRC_CPP = test_util.cpp \ test_data_structures/test_event_registry.cpp \ test_basic_math/test_find_index.cpp \ test_basic_math/test_interpolation_3d.cpp \ test_data_structures/test_engine_math.cpp \ + test_idle_controller.cpp \ test_trigger_decoder.cpp \ test_fuel_map.cpp \ engine_test_helper.cpp \ diff --git a/unit_tests/test_idle_controller.c b/unit_tests/test_idle_controller.cpp similarity index 75% rename from unit_tests/test_idle_controller.c rename to unit_tests/test_idle_controller.cpp index 4527e24df6..8d1270e526 100644 --- a/unit_tests/test_idle_controller.c +++ b/unit_tests/test_idle_controller.cpp @@ -7,6 +7,6 @@ #include -void idleDebug(char *msg, int value) { +void idleDebug(const char *msg, int value) { printf("%s\r\n", msg); }