diff options
author | Tristan Gingold <tgingold@free.fr> | 2015-01-20 15:21:35 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2015-01-20 15:21:35 +0100 |
commit | 4b6f841fcd09ce8f0a80e87d4031d9417c0eabb5 (patch) | |
tree | dd64dfc80757b1bfa334ed09b2fef263d3b6b002 /testsuite/gna/bug04/test.vhdl | |
parent | 68379e7e41aa07de23978535e1f1dc82986e0bfc (diff) | |
download | ghdl-4b6f841fcd09ce8f0a80e87d4031d9417c0eabb5.tar.gz ghdl-4b6f841fcd09ce8f0a80e87d4031d9417c0eabb5.tar.bz2 ghdl-4b6f841fcd09ce8f0a80e87d4031d9417c0eabb5.zip |
Add bug04 testcase.
Diffstat (limited to 'testsuite/gna/bug04/test.vhdl')
-rw-r--r-- | testsuite/gna/bug04/test.vhdl | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/testsuite/gna/bug04/test.vhdl b/testsuite/gna/bug04/test.vhdl new file mode 100644 index 000000000..b13b3ab69 --- /dev/null +++ b/testsuite/gna/bug04/test.vhdl @@ -0,0 +1,63 @@ +library ieee;
+use ieee.std_logic_1164.std_logic;
+use ieee.std_logic_1164.is_x;
+
+package std_logic_warning is
+ function EQ_BUT_NOT_META(l, r : std_logic) return boolean;
+end package;
+
+package body std_logic_warning is
+
+ use ieee.std_logic_1164."=";
+
+ function EQ_BUT_NOT_META(l, r : std_logic) return boolean is
+ begin
+ if is_x(l) or is_x(r) then
+ report "std_logic_warning.""="": metavalue detected, returning FALSE"
+ severity WARNING;
+ return FALSE;
+ end if;
+ return l = r; -- std_logic_1164."="(l, r);
+ end function;
+
+end package body;
+
+library ieee;
+use ieee.std_logic_1164.std_ulogic;
+use ieee.std_logic_1164.std_logic;
+use ieee.std_logic_1164.all;
+
+use work.std_logic_warning.all;
+entity warning_test is
+end entity;
+
+architecture foo of warning_test is
+ signal a: std_logic;
+ signal b: std_logic;
+begin
+
+UNLABELLED:
+ process
+ begin
+ wait for 1 ns;
+ a <= 'X';
+ wait for 1 ns;
+ b <= '1';
+ wait for 1 ns;
+ a <= '0';
+ wait for 1 ns;
+ b <= '0';
+ wait;
+ end process;
+
+MONITOR:
+ process (a,b)
+ begin
+ assert EQ_BUT_NOT_META(a,b) = TRUE
+ report "a = b " & "( " & std_logic'image(a)
+ & "=" & std_logic'image(b) & " )"
+ severity NOTE;
+ end process;
+
+end architecture;
+
\ No newline at end of file |