diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-08-17 10:16:59 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-08-23 16:35:36 +0200 |
commit | c34b020a8c1b6aa5083a637e3e9062c7a71b309a (patch) | |
tree | fdfcb1d344e55983f01091be66c6571b9fc782fa /testsuite/pyunit | |
parent | ad58c297680fe0256eacd12249d2131b00ff9b66 (diff) | |
download | ghdl-c34b020a8c1b6aa5083a637e3e9062c7a71b309a.tar.gz ghdl-c34b020a8c1b6aa5083a637e3e9062c7a71b309a.tar.bz2 ghdl-c34b020a8c1b6aa5083a637e3e9062c7a71b309a.zip |
Some updates.
Diffstat (limited to 'testsuite/pyunit')
-rw-r--r-- | testsuite/pyunit/Current.vhdl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/pyunit/Current.vhdl b/testsuite/pyunit/Current.vhdl index 240c11d5f..a397e8700 100644 --- a/testsuite/pyunit/Current.vhdl +++ b/testsuite/pyunit/Current.vhdl @@ -111,9 +111,13 @@ begin case foo_bar is when 0 => + report "hello" & " " & "world"; when 1 | 2 => + report "vhdl" severity note; when 3 to 4 => + assert true nor false report "nothing"; when 5 to 6 | 8 to 9 => + assert true nor false report "nothing" severity warning or error; when others => end case; end process; |