Skip to content

Commit

Permalink
test: skip test_dma_playback_time on Kasli (#946)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbourdeauducq committed Aug 9, 2018
1 parent 957645a commit 052e400
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions artiq/test/coredevice/test_rtio.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,12 @@ def test_dma_record_time(self):
self.assertLess(dt/count, 20*us)

def test_dma_playback_time(self):
# Skip on Kasli until #946 is resolved.
try:
# hack to detect Kasli.
self.device_mgr.get_desc("ad9914dds0")
except KeyError:
raise unittest.SkipTest("skipped on Kasli for now")
exp = self.create(_DMA)
count = 20000
exp.record_many(40)
Expand Down

0 comments on commit 052e400

Please sign in to comment.