hardware continues integration needs a high RPM high tooth count test case
#1351
This commit is contained in:
parent
79710b4649
commit
e4f3989603
|
@ -15,6 +15,7 @@
|
||||||
|
|
||||||
EXTERN_CONFIG;
|
EXTERN_CONFIG;
|
||||||
|
|
||||||
|
// VW_ABA
|
||||||
void setVwAba(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
|
void setVwAba(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
|
||||||
setFrankensoConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE);
|
setFrankensoConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,7 @@ public class AutoTest {
|
||||||
sendCommand(getEnableCommand(Fields.CMD_FUNCTIONAL_TEST_MODE));
|
sendCommand(getEnableCommand(Fields.CMD_FUNCTIONAL_TEST_MODE));
|
||||||
testCustomEngine();
|
testCustomEngine();
|
||||||
testVW_60_2();
|
testVW_60_2();
|
||||||
|
testV12();
|
||||||
testMazdaMiata2003();
|
testMazdaMiata2003();
|
||||||
test2003DodgeNeon();
|
test2003DodgeNeon();
|
||||||
testFordAspire();
|
testFordAspire();
|
||||||
|
@ -75,7 +76,16 @@ public class AutoTest {
|
||||||
setEngineType(32);
|
setEngineType(32);
|
||||||
// TODO: we shall get this RPM higher! At the moment things fail at 5500 :(
|
// TODO: we shall get this RPM higher! At the moment things fail at 5500 :(
|
||||||
// first let's get to expected RPM
|
// 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);
|
changeRpm(rpm);
|
||||||
assertRpmDoesNotJump(rpm);
|
assertRpmDoesNotJump(rpm);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue