diff options
author | Tristan Gingold | 2015-09-02 18:23:37 +0200 |
---|---|---|
committer | Tristan Gingold | 2015-09-02 18:23:37 +0200 |
commit | 27e107a5196b31de85b3433c8dc616d6d7c7432c (patch) | |
tree | a50cf743867305b3e5643b44178fe3a4d62c0d79 /testsuite/gna/bug023/ppkg_tb.vhdl | |
parent | d40c73de021a6c07d73a7f17e499f9ba6772f164 (diff) | |
download | ghdl-27e107a5196b31de85b3433c8dc616d6d7c7432c.tar.gz ghdl-27e107a5196b31de85b3433c8dc616d6d7c7432c.tar.bz2 ghdl-27e107a5196b31de85b3433c8dc616d6d7c7432c.zip |
Add bug023.
Diffstat (limited to 'testsuite/gna/bug023/ppkg_tb.vhdl')
-rw-r--r-- | testsuite/gna/bug023/ppkg_tb.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/gna/bug023/ppkg_tb.vhdl b/testsuite/gna/bug023/ppkg_tb.vhdl new file mode 100644 index 0000000..f53df91 --- /dev/null +++ b/testsuite/gna/bug023/ppkg_tb.vhdl @@ -0,0 +1,14 @@ +entity ppkg_tb is +end ppkg_tb; + +use work.ppkg.all; +architecture behav of ppkg_tb is +begin + process + begin + rep1; + rep2; + rep3; + wait; + end process; +end behav; |