From 13501115f6b9c6916d030edcfe99e76afea4e2e6 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 7 Jul 2020 17:27:43 +0800 Subject: [PATCH] test: remove watchdog test (#1458) --- artiq/test/coredevice/test_rtio.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/artiq/test/coredevice/test_rtio.py b/artiq/test/coredevice/test_rtio.py index 1e7693cf5..c6f42366a 100644 --- a/artiq/test/coredevice/test_rtio.py +++ b/artiq/test/coredevice/test_rtio.py @@ -170,17 +170,6 @@ class PulseRateAD9914DDS(EnvExperiment): return -class Watchdog(EnvExperiment): - def build(self): - self.setattr_device("core") - - @kernel - def run(self): - with watchdog(50*ms): - while True: - pass - - class LoopbackCount(EnvExperiment): def build(self, npulses): self.setattr_device("core") @@ -522,11 +511,6 @@ class CoredeviceTest(ExperimentCase): def test_address_collision(self): self.execute_and_test_in_log(AddressCollision, "RTIO collision") - def test_watchdog(self): - # watchdog only works on the device - with self.assertRaises(exceptions.WatchdogExpired): - self.execute(Watchdog) - def test_time_keeps_running(self): self.execute(TimeKeepsRunning) t1 = self.dataset_mgr.get("time_at_start")