hdl.ast: check type of Sample(domain=...).
authorwhitequark <cz@m-labs.hk>
Sun, 8 Sep 2019 23:55:05 +0000 (23:55 +0000)
committerwhitequark <cz@m-labs.hk>
Sun, 8 Sep 2019 23:55:05 +0000 (23:55 +0000)
Fixes #199.

nmigen/hdl/ast.py
nmigen/test/test_hdl_ast.py

index 07e00e5be7b2d9e69718d88b5edca360016ef983..0afa5d93ac759200908ccb15a8706208a4d007a0 100644 (file)
@@ -983,11 +983,14 @@ class Sample(Value):
         self.clocks = int(clocks)
         self.domain = domain
         if not isinstance(self.value, (Const, Signal, ClockSignal, ResetSignal, Initial)):
-            raise TypeError("Sampled value may only be a signal or a constant, not {!r}"
+            raise TypeError("Sampled value must be a signal or a constant, not {!r}"
                             .format(self.value))
         if self.clocks < 0:
             raise ValueError("Cannot sample a value {} cycles in the future"
                              .format(-self.clocks))
+        if not (self.domain is None or isinstance(self.domain, str)):
+            raise TypeError("Domain name must be a string or None, not {!r}"
+                            .format(self.domain))
 
     def shape(self):
         return self.value.shape()
index a5cc22ff5e84d8c14d9f7ef009b259cd7bed9e23..1fd70aaef021922a62e9a74366ed265a3a91426a 100644 (file)
@@ -629,7 +629,7 @@ class SampleTestCase(FHDLTestCase):
 
     def test_wrong_value_operator(self):
         with self.assertRaises(TypeError,
-                "Sampled value may only be a signal or a constant, not "
+                "Sampled value must be a signal or a constant, not "
                 "(+ (sig $signal) (const 1'd1))"):
             Sample(Signal() + 1, 1, "sync")
 
@@ -638,6 +638,11 @@ class SampleTestCase(FHDLTestCase):
                 "Cannot sample a value 1 cycles in the future"):
             Sample(Signal(), -1, "sync")
 
+    def test_wrong_domain(self):
+        with self.assertRaises(TypeError,
+                "Domain name must be a string or None, not 0"):
+            Sample(Signal(), 1, 0)
+
 
 class InitialTestCase(FHDLTestCase):
     def test_initial(self):