VW warnings on cranking #2861

This commit is contained in:
Andrey 2021-06-26 00:51:09 -04:00
parent 78dd28467d
commit 6dbc40e990
3 changed files with 5224 additions and 0 deletions

View File

@ -8,6 +8,7 @@ TESTS_SRC_CPP = \
tests/trigger/test_2jz_vvt.cpp \
tests/trigger/test_real_cranking_miata_NA.cpp \
tests/trigger/test_real_cranking_miata_na6.cpp \
tests/trigger/test_real_volkswagen.cpp \
tests/trigger/test_quad_cam.cpp \
tests/trigger/test_override_gaps.cpp \
tests/trigger/test_injection_scheduling.cpp \

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,26 @@
/*
* @file test_real_volkswagen.cpp
*
* @date Jun 26, 2021
* @author Andrey Belomutskiy, (c) 2012-2021
*/
#include "engine_test_helper.h"
#include "logicdata_csv_reader.h"
TEST(crankingVW, vwRealCrankingFromFile) {
CsvReader reader;
int indeces[1] = {0};
reader.open("tests/trigger/recourses/nick_1.csv", indeces);
WITH_ENGINE_TEST_HELPER (VW_ABA);
/*
while (reader.haveMore()) {
reader.processLine(&eth);
}
ASSERT_EQ( 0, eth.recentWarnings()->getCount())<< "warningCounter#vwRealCranking";
ASSERT_EQ( 560, GET_RPM())<< reader.lineIndex;
*/
}