mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* add timing information per test function/script/pkg * bypass script scheduler logic for our testsystem with a endlessloop due to faster execution time the wait time between doubleclicks needs to be disabled * try to sync lift/drop tests
15 lines
394 B
Text
15 lines
394 B
Text
/*
|
|
busyloop for our scriptscheduler
|
|
The scheduler, if no script has to run, sleeps until the next
|
|
script is scheduled for wakeup.
|
|
|
|
For our testsystem that is not what we want, since almost no scripts are running the delays are quite huge.
|
|
|
|
So trick the scheduler by having this script run endless with a minimum of delay
|
|
*/
|
|
use os;
|
|
|
|
print("starting busyloop");
|
|
while (1)
|
|
sleepms(1);
|
|
endwhile
|