forked from M-Labs/artiq
1
0
Fork 0

Commit missing parts of 501de306.

This commit is contained in:
whitequark 2016-03-18 22:48:26 +00:00
parent 501de30626
commit 891e3cf1fe
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ from math import sqrt
from artiq.experiment import * from artiq.experiment import *
from artiq.test.hardware_testbench import ExperimentCase from artiq.test.hardware_testbench import ExperimentCase
from artiq.coredevice import exceptions
artiq_low_latency = os.getenv("ARTIQ_LOW_LATENCY") artiq_low_latency = os.getenv("ARTIQ_LOW_LATENCY")
@ -285,7 +286,7 @@ class CoredeviceTest(ExperimentCase):
def test_watchdog(self): def test_watchdog(self):
# watchdog only works on the device # watchdog only works on the device
with self.assertRaises(IOError): with self.assertRaises(exceptions.WatchdogExpired):
self.execute(Watchdog) self.execute(Watchdog)
@unittest.skipUnless(artiq_low_latency, @unittest.skipUnless(artiq_low_latency,