aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/subprg01/tb_subprg01.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-11-01 18:51:37 +0100
committerTristan Gingold <tgingold@free.fr>2019-11-01 18:51:37 +0100
commit8ba9adc3f24e9761c5aae4810fae3f4529ffa9f1 (patch)
tree0877a84837476444d8ef588b4bfd7a90809f39b6 /testsuite/synth/subprg01/tb_subprg01.vhdl
parent2b79f468513b6bc81d0d9b2f482ba8c74f7fac96 (diff)
downloadghdl-8ba9adc3f24e9761c5aae4810fae3f4529ffa9f1.tar.gz
ghdl-8ba9adc3f24e9761c5aae4810fae3f4529ffa9f1.tar.bz2
ghdl-8ba9adc3f24e9761c5aae4810fae3f4529ffa9f1.zip
testsuite/synth: add a test for inout variable
Diffstat (limited to 'testsuite/synth/subprg01/tb_subprg01.vhdl')
-rw-r--r--testsuite/synth/subprg01/tb_subprg01.vhdl25
1 files changed, 25 insertions, 0 deletions
diff --git a/testsuite/synth/subprg01/tb_subprg01.vhdl b/testsuite/synth/subprg01/tb_subprg01.vhdl
new file mode 100644
index 000000000..de60ca324
--- /dev/null
+++ b/testsuite/synth/subprg01/tb_subprg01.vhdl
@@ -0,0 +1,25 @@
+entity tb_subprg01 is
+end tb_subprg01;
+
+library ieee;
+use ieee.std_logic_1164.all;
+
+architecture behav of tb_subprg01 is
+ signal a, na : std_logic_vector (3 downto 0);
+begin
+ dut: entity work.subprg01
+ port map (a, na);
+
+ process
+ begin
+ a <= x"0";
+ wait for 1 ns;
+ assert na = x"f" severity failure;
+
+ a <= x"5";
+ wait for 1 ns;
+ assert na = x"a" severity failure;
+
+ wait;
+ end process;
+end behav;