aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1980/repro.vhdl
blob: 93cef5f1a65546c0ecfb24e1b05a41d548e461b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
library osvvm;
use osvvm.AlertLogPkg.all;

entity repro is
end repro;

architecture behav of repro is
begin
  process
  begin
    SetAlertLogJustify(True);
    ReportAlerts;
    wait;
  end process;
end behav;