technical debt: NT -> US -> NT in unit test scheduler [fix code & prepare flag for now broken test]
see #7245
This commit is contained in:
parent
715019ec7f
commit
44f33b0579
|
@ -21,6 +21,7 @@
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
bool unitTestBusyWaitHack;
|
bool unitTestBusyWaitHack;
|
||||||
|
bool unitTestTaskPrecisionHack;
|
||||||
|
|
||||||
#if EFI_ENGINE_SNIFFER
|
#if EFI_ENGINE_SNIFFER
|
||||||
#include "engine_sniffer.h"
|
#include "engine_sniffer.h"
|
||||||
|
@ -360,7 +361,12 @@ void EngineTestHelper::setTimeAndInvokeEventsUs(int targetTimeUs) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
setTimeNowUs(nextEventTime);
|
setTimeNowUs(nextEventTime);
|
||||||
engine.scheduler.executeAll(getTimeNowUs());
|
extern bool unitTestTaskPrecisionHack;
|
||||||
|
if (unitTestTaskPrecisionHack) {
|
||||||
|
engine.scheduler.executeAll(getTimeNowUs());
|
||||||
|
} else {
|
||||||
|
engine.scheduler.executeAll(getTimeNowNt());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
setTimeNowUs(targetTimeUs);
|
setTimeNowUs(targetTimeUs);
|
||||||
|
|
|
@ -43,8 +43,12 @@ void TestExecutor::schedule(const char *msg, scheduling_s* scheduling, efitick_t
|
||||||
// technical debt: NT -> US -> NT in unit test scheduler #7245
|
// technical debt: NT -> US -> NT in unit test scheduler #7245
|
||||||
// by the way we have loss of precision while converting NT to integer US
|
// by the way we have loss of precision while converting NT to integer US
|
||||||
// technical debt: looks like our unit tests were all created with us precision?
|
// technical debt: looks like our unit tests were all created with us precision?
|
||||||
efitimeus_t timeUs = NT2US(timeNt);
|
efitimeus_t scheduleTime = timeNt;
|
||||||
schedulingQueue.insertTask(scheduling, US2NT(timeUs), action);
|
extern bool unitTestTaskPrecisionHack;
|
||||||
|
if(unitTestTaskPrecisionHack) {
|
||||||
|
scheduleTime = US2NT(NT2US(timeNt));
|
||||||
|
}
|
||||||
|
schedulingQueue.insertTask(scheduling, scheduleTime, action);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestExecutor::cancel(scheduling_s* s) {
|
void TestExecutor::cancel(scheduling_s* s) {
|
||||||
|
|
Loading…
Reference in New Issue