aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/libghdl/process.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-11-23 07:56:08 +0100
committerTristan Gingold <tgingold@free.fr>2022-11-23 07:56:08 +0100
commitd2a0fe9e9c097a5130a6d6a6f2c8c76bf4394ae0 (patch)
tree3aea731d1ada912ff5841d7e45d2dfa3425bfeb9 /testsuite/pyunit/libghdl/process.vhdl
parent877e9797d7efbc252e77ad05b9c99e18e555b03a (diff)
downloadghdl-d2a0fe9e9c097a5130a6d6a6f2c8c76bf4394ae0.tar.gz
ghdl-d2a0fe9e9c097a5130a6d6a6f2c8c76bf4394ae0.tar.bz2
ghdl-d2a0fe9e9c097a5130a6d6a6f2c8c76bf4394ae0.zip
testsuite/pyunit/libghdl: add tests for process comments
Diffstat (limited to 'testsuite/pyunit/libghdl/process.vhdl')
-rw-r--r--testsuite/pyunit/libghdl/process.vhdl9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/pyunit/libghdl/process.vhdl b/testsuite/pyunit/libghdl/process.vhdl
new file mode 100644
index 000000000..c0b56fe6e
--- /dev/null
+++ b/testsuite/pyunit/libghdl/process.vhdl
@@ -0,0 +1,9 @@
+architecture arch of e is
+ signal s, s_n : bit;
+begin
+ -- Comment for :p:
+ p : process (s)
+ begin
+ s <= not s_n;
+ end process;
+end arch;