From 34d0ba956322c018f6737d12a1844fd19dec57f0 Mon Sep 17 00:00:00 2001 From: occheung Date: Mon, 18 Nov 2024 15:15:43 +0800 Subject: [PATCH] coredevice: re-enable annotation test --- artiq/test/coredevice/test_embedding.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/artiq/test/coredevice/test_embedding.py b/artiq/test/coredevice/test_embedding.py index 1483277c4..ec414e2f6 100644 --- a/artiq/test/coredevice/test_embedding.py +++ b/artiq/test/coredevice/test_embedding.py @@ -323,7 +323,6 @@ class _Annotation(EnvExperiment): def build(self): self.setattr_device("core") - # NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/101 @kernel def overflow(self, x: int64) -> bool: return (x << 32) != int64(0) @@ -334,7 +333,6 @@ class _Annotation(EnvExperiment): class AnnotationTest(ExperimentCase): - @unittest.skip("NAC3TODO https://git.m-labs.hk/M-Labs/nac3/issues/101") def test_annotation(self): exp = self.create(_Annotation) self.assertEqual(exp.overflow(int64(1)), True)