aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2018-10-24 05:16:19 +0200
committerTristan Gingold <tgingold@free.fr>2018-10-24 05:16:19 +0200
commit93144485a2f97d6f8f8d8e7565f60cc600f7229e (patch)
treedeced8992a6448aa1919adea28e19512bb2f950c /testsuite
parentffd7808c74dd326f11c7373118ed85354076211e (diff)
downloadghdl-93144485a2f97d6f8f8d8e7565f60cc600f7229e.tar.gz
ghdl-93144485a2f97d6f8f8d8e7565f60cc600f7229e.tar.bz2
ghdl-93144485a2f97d6f8f8d8e7565f60cc600f7229e.zip
bug077: strenghten
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/gna/bug077/repro3.vhdl2
-rw-r--r--testsuite/gna/bug077/repro7.vhdl2
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/gna/bug077/repro3.vhdl b/testsuite/gna/bug077/repro3.vhdl
index a5b7ab089..5e82965f8 100644
--- a/testsuite/gna/bug077/repro3.vhdl
+++ b/testsuite/gna/bug077/repro3.vhdl
@@ -9,7 +9,7 @@ architecture behav of repro3 is
procedure check (v : my_rec) is
begin
- assert v.a = '0' and v.w = "01";
+ assert v.a = '0' and v.w = "01" severity failure;
end check;
procedure pack (a : bit; w : bit_vector) is
diff --git a/testsuite/gna/bug077/repro7.vhdl b/testsuite/gna/bug077/repro7.vhdl
index 8d4d31f2b..0306fc12a 100644
--- a/testsuite/gna/bug077/repro7.vhdl
+++ b/testsuite/gna/bug077/repro7.vhdl
@@ -9,7 +9,7 @@ architecture behav of repro7 is
procedure check (signal v : my_rec) is
begin
- assert v.a = '0' and v.w = "01";
+ assert v.a = '0' and v.w = "01" severity failure;
end check;
procedure pack (signal a : bit; signal w : bit_vector) is