unit test
This commit is contained in:
parent
f839afeb54
commit
27fb199e66
|
@ -127,6 +127,7 @@ extern bool printTriggerDebug;
|
|||
int main(void) {
|
||||
// printTriggerDebug = true;
|
||||
|
||||
testDifferentInjectionModes();
|
||||
testPidAutoZigZag();
|
||||
testMissedSpark299();
|
||||
testSparkReverseOrderBug319();
|
||||
|
|
|
@ -1013,6 +1013,15 @@ void testFuelSchedulerBug299smallAndMedium(void) {
|
|||
testMafValue = 0;
|
||||
}
|
||||
|
||||
void testDifferentInjectionModes(void) {
|
||||
printf("*************************************************** testDifferentInjectionModes\r\n");
|
||||
|
||||
EngineTestHelper eth(TEST_ENGINE);
|
||||
EXPAND_EngineTestHelper
|
||||
setTestBug299(ð);
|
||||
|
||||
}
|
||||
|
||||
void testFuelSchedulerBug299smallAndLarge(void) {
|
||||
printf("*************************************************** testFuelSchedulerBug299 small to large\r\n");
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
void testTriggerDecoder(void);
|
||||
void testFuelSchedulerBug299smallAndMedium(void);
|
||||
void testFuelSchedulerBug299smallAndLarge(void);
|
||||
void testDifferentInjectionModes(void);
|
||||
void testSparkReverseOrderBug319(void);
|
||||
void testMissedSpark299(void);
|
||||
void testRpmCalculator(void);
|
||||
|
|
Loading…
Reference in New Issue