LUMIERA.clone/tests/32scheduler.tests
Ichthyostega 7eca3ffe42 Scheduler-test: a helper for one-time operations
Invent a special JobFunctor...
 - can be created / bound from a λ
 - self-manages its storage on the heap
 - can be invoked once, then discards itself

Intention is to pass such one-time actions to the Scheduler
to cause some ad-hoc transitions tied to curren circumstances;
a notable example will be the callback after load-test completion.
2023-12-08 03:16:57 +01:00

73 lines
979 B
Text

TESTING "Component Test Suite: Scheduler" ./test-suite --group=engine
TEST "Activity observation framework" ActivityDetector_test <<END
return: 0
END
TEST "BlockFlow memory management scheme" BlockFlow_test <<END
return: 0
END
TEST "Scheduler Activity Language" SchedulerActivity_test <<END
return: 0
END
TEST "Scheduler Layer-1" SchedulerInvocation_test <<END
return: 0
END
TEST "Scheduler Layer-2" SchedulerCommutator_test <<END
return: 0
END
TEST "Scheduler Load-Control" SchedulerLoadControl_test <<END
return: 0
END
PLANNED "Scheduler Integration" SchedulerService_test <<END
return: 0
END
TEST "Self-managed one-time Job" SpecialJobFun_test <<END
return: 0
END
PLANNED "Synthetic Load for Test" TestChainLoad_test <<END
return: 0
END
PLANNED "Scheduler Performance" SchedulerStress_test <<END
return: 0
END
PLANNED "Scheduler Usage" SchedulerUsage_test <<END
return: 0
END
TEST "Worker Thread Service" WorkForce_test <<END
return: 0
END