Hide the register augmentation traces by default
authorCesar Strauss <cestrauss@gmail.com>
Sun, 21 Feb 2021 17:18:15 +0000 (14:18 -0300)
committerCesar Strauss <cestrauss@gmail.com>
Sun, 21 Feb 2021 17:18:15 +0000 (14:18 -0300)
This saves some vertical space if you are not interested in seeing this
level of detail, but it is still there if you need it.
Needs the latest nmutil version for it to work.

src/soc/simple/test/test_runner.py

index 60f049ee6d979cebce6e833c81f53155c3cc65c5..381395fad2c6830cd57ec20cf462ba3eaad0400d 100644 (file)
@@ -313,7 +313,8 @@ class TestRunner(FHDLTestCase):
 
         styles = {
             'dec': {'base': 'dec'},
-            'bin': {'base': 'bin'}
+            'bin': {'base': 'bin'},
+            'closed': {'closed': True}
         }
 
         traces = [
@@ -327,7 +328,7 @@ class TestRunner(FHDLTestCase):
             {'comment': 'svp64 decoding'},
             'svp64_rm[23:0]',
             ('dec2.extra[8:0]', 'bin'),
-            ('register augmentation', 'dec', [
+            ('register augmentation', 'dec', 'closed', [
                 {'comment': 'v3.0b registers'},
                 'dec2.dec_o.RT[4:0]',
                 'dec2.dec_a.RA[4:0]',