This commit is contained in:
rusefi 2018-12-08 11:08:41 -05:00
parent d0e650aced
commit 58843b5f6c
2 changed files with 21 additions and 16 deletions

View File

@ -63,33 +63,47 @@ int main(void) {
testMisc();
testDifferentInjectionModes();
/**
* PID
*/
testPidAuto();
testPidController();
/**
* Larger-scale engine control
*/
testMissedSpark299();
testSparkReverseOrderBug319();
testFuelSchedulerBug299smallAndLarge();
testFuelSchedulerBug299smallAndMedium();
testLogicExpressions(); // fsio
testOverflow64Counter();
testInterpolate3d();
testFindIndex();
testPlainCrankingWithoutAdvancedFeatures();
testStartOfCrankingPrimingPulse();
testFasterEngineSpinningUp();
testInterpolate2d();
testGpsParser();
testFuelMap();
testFuelCut();
testEngineMath();
testIgnitionPlanning();
testSensors();
/**
* Data structures and general methods
*/
testCyclicBuffer();
testCrc();
testOverflow64Counter();
testFindIndex();
testInterpolate3d();
testInterpolate2d();
testSetTableValue();
testHistogram();
testFLStack();
testSignalExecutor();
testHistogram();
/**
* Business logic tests
*/
testMalfunctionCentral();
testConsoleLogic();
@ -97,24 +111,20 @@ int main(void) {
testAngleResolver();
testPinHelper();
testSetTableValue();
testAccelEnrichment();
testSpeedDensity();
testFLStack();
testMenuTree();
testMafLookup();
testIgnitionMapGenerator();
testMafFuelMath();
testPidController();
testTriggerDecoder();
// resizeMap();
printf("Success 20181120\r\n");
printf("Success 20181206\r\n");
printAllTriggers();
// printConvertedTable();
return EXIT_SUCCESS;

View File

@ -66,10 +66,6 @@ void testFindIndex(void) {
}
}
//static float getValue2(float key, float maf) {
//
//}
void testInterpolate2d(void) {
printf("*************************************************** testInterpolate2d\r\n");
@ -100,7 +96,6 @@ void testSetTableValue(void) {
printf("*************************************************** testSetTableValue\r\n");
persistent_config_s config;
// memset()
for (int i = 0; i < CLT_CURVE_SIZE; i++) {
config.cltFuelCorrBins[i] = -40 + i * 10;