Intentionally slow down the long running test

This allows the watchdog restoring/delayedrestart tests to function
This commit is contained in:
Jordan Brown
2020-07-09 10:27:08 -04:00
parent 3f06103502
commit a5ae66bf02
3 changed files with 34 additions and 8 deletions
+8
View File
@@ -1,11 +1,19 @@
/world
sleep_offline = FALSE
loop_checks = FALSE
/world/New()
log << "Initial value of sleep_offline: [sleep_offline]"
// Intentionally slow down startup for testing purposes
for(var/i in 1 to 10000000)
dab()
TgsNew(new /datum/tgs_event_handler/impl, TGS_SECURITY_ULTRASAFE)
StartAsync()
/proc/dab()
return
/proc/StartAsync()
set waitfor = FALSE
Run()