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