hardware continues integration needs a high RPM high tooth count test case

#1351
This commit is contained in:
rusefi 2020-04-23 01:26:30 -04:00
parent 79710b4649
commit e4f3989603
2 changed files with 12 additions and 1 deletions

View File

@ -15,6 +15,7 @@
EXTERN_CONFIG;
// VW_ABA
void setVwAba(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
setFrankensoConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE);

View File

@ -53,6 +53,7 @@ public class AutoTest {
sendCommand(getEnableCommand(Fields.CMD_FUNCTIONAL_TEST_MODE));
testCustomEngine();
testVW_60_2();
testV12();
testMazdaMiata2003();
test2003DodgeNeon();
testFordAspire();
@ -75,7 +76,16 @@ public class AutoTest {
setEngineType(32);
// TODO: we shall get this RPM higher! At the moment things fail at 5500 :(
// first let's get to expected RPM
int rpm = 8500;
int rpm = 5000;
changeRpm(rpm);
assertRpmDoesNotJump(rpm);
}
private static void testV12() {
setEngineType(40);
// TODO: we shall get this RPM higher!
// first let's get to expected RPM
int rpm = 4000;
changeRpm(rpm);
assertRpmDoesNotJump(rpm);
}