Reply To: All AffirmIf Pass, but OSVVM HTML Report Returns NOCHECKS
Why OSVVM™? › Forums › OSVVM › All AffirmIf Pass, but OSVVM HTML Report Returns NOCHECKS › Reply To: All AffirmIf Pass, but OSVVM HTML Report Returns NOCHECKS
July 16, 2025 at 15:06
#2744

Member
This step is recommended, but not required. Do it after you get the above running.
While I SetTestName, SetLogEnable can be called concurrently, it is more normal to call them in the process that is controlling the overall test. Currently this is the “Stim” process but we will return to this:
Stim: process
variable RandA : RandomPType;
variable RandB : RandomPType;
variable allDone : boolean := false;
variable nCycles : natural := 0;
begin
SetTestName("tb_osvvm_comparator_VHDL");
SetLogEnable(INFO, TRUE);
SetLogEnable(PASSED, TRUE);
RandA.InitSeed(RandA'instance_name);
RandB.InitSeed(RandB'instance_name);