aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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