mirror of https://github.com/m-labs/artiq.git
test/worker: test watchdog in build()
This commit is contained in:
parent
43a05c783d
commit
f158711f7e
|
@ -4,7 +4,7 @@ import sys
|
|||
from time import sleep
|
||||
|
||||
from artiq import *
|
||||
from artiq.master.worker import *
|
||||
from artiq.master.worker import *
|
||||
|
||||
|
||||
class WatchdogNoTimeout(Experiment, AutoDB):
|
||||
|
@ -20,6 +20,15 @@ class WatchdogTimeout(Experiment, AutoDB):
|
|||
sleep(100.0)
|
||||
|
||||
|
||||
class WatchdogTimeoutInBuild(Experiment, AutoDB):
|
||||
def build(self):
|
||||
with self.scheduler.watchdog(0.1*s):
|
||||
sleep(100.0)
|
||||
|
||||
def run(self):
|
||||
pass
|
||||
|
||||
|
||||
@asyncio.coroutine
|
||||
def _call_worker(worker, run_params):
|
||||
yield from worker.prepare(0, run_params)
|
||||
|
@ -52,3 +61,7 @@ class WatchdogCase(unittest.TestCase):
|
|||
def test_watchdog_timeout(self):
|
||||
with self.assertRaises(WorkerWatchdogTimeout):
|
||||
_run_experiment("WatchdogTimeout")
|
||||
|
||||
def test_watchdog_timeout_in_build(self):
|
||||
with self.assertRaises(WorkerWatchdogTimeout):
|
||||
_run_experiment("WatchdogTimeoutInBuild")
|
||||
|
|
Loading…
Reference in New Issue