This commit is contained in:
rusefi 2017-03-05 21:13:04 -05:00
parent bbec64a0d3
commit 0533fcfc22
2 changed files with 8 additions and 3 deletions

View File

@ -66,8 +66,6 @@ case DODGE_NEON_2003_CAM:
return "NEON_2003_CAM";
case DODGE_NEON_2003_CRANK:
return "NEON_2003_CRANK";
case ET_UNUSED:
return "ET_UNUSED";
case FORD_ASPIRE_1996:
return "FORD_ASPIRE_1996";
case FORD_ESCORT_GT:
@ -129,6 +127,10 @@ case DODGE_STRATUS:
case TEST_CIVIC_4_0_BOTH:
case TEST_CIVIC_4_0_RISE:
return "civictest";
#if EFI_UNIT_TEST || defined(__DOXYGEN__)
case TEST_ISSUE_366:
return "unittest";
#endif
}
return NULL;
}

View File

@ -152,7 +152,10 @@ typedef enum {
*/
TEST_CIVIC_4_0_RISE = 51,
ET_UNUSED = 52,
#if EFI_UNIT_TEST || defined(__DOXYGEN__)
TEST_ISSUE_366 = 52,
#endif
Force_4b_engine_type = ENUM_32_BITS,
} engine_type_e;