ErrorSimulator.cpp 222 B

1234567891011121314
  1. #ifdef ERROR_SIMULATOR
  2. #include "ErrorSimulator.hpp"
  3. int failCounter = -1;
  4. bool checkFail(void) {
  5. if(failCounter < 0) {
  6. return false;
  7. }
  8. return failCounter == 0 ? true : failCounter-- == 0;
  9. }
  10. #endif