VW warnings on cranking #2861
This commit is contained in:
parent
78dd28467d
commit
6dbc40e990
|
@ -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
|
@ -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(ð);
|
||||
}
|
||||
ASSERT_EQ( 0, eth.recentWarnings()->getCount())<< "warningCounter#vwRealCranking";
|
||||
ASSERT_EQ( 560, GET_RPM())<< reader.lineIndex;
|
||||
*/
|
||||
}
|
Loading…
Reference in New Issue