I have a directory and file structure like this:
vunit_multi/
alfa/
run.py
...
bravo/
run.py
...
The VUnit run.py can run separately.
Is there any nice way to combine these multiple separate VUnit runs into a…
I have several VUnit unit testbenches and a single top level testbench in my design projects. VUnit finds all my testbenches and executes them. I would like to control the order the testbenches are executed, so I can have the shorter testbenches…
Using ModelSim and VUnit I try to compile some UVVM, but this gives some warnings like:
** Warning: C:\work\Qtec\SVN_sim\Design\uvvm\uvvm_util\src\methods_pkg.vhd(1159): (vcom-1346) Default expression of interface object is not globally static.
So…
I'm very confused about vunit testing, especially the link between tests and the way they are reset.
Please take a look at next minimal example:
device under test
Device has one inner state that latch on 1 when input goes to 1
library IEEE;
use…
I may have some functions that assert and fail if they're not happy.
How do I test this functionality with VUnit to ensure that these functions do in-fact throw the failure in the right conditions?
For instance, lets say I wanted to check this…
I am new to Vunit - but not testing. I currently have a setup where I have testbenches that use a lot of OSVVM where setup is provided via generics to the testbench, and I use either TCL or Pytest to run the test through a full test suite.
Having…
I have a project with multiple structural entities that each have sub-entities like the picture below.
Now I am trying to plan for the testing phase. I have checked UVVM, OSVVM, and VUnit and I found that VUnit is the easiest and fastest way to…
I have the array_axis_vcs VUNIT example running.
Now I want to customize the example to my needs, a.o. increasing the data_width size (32 bit in the example).
Doing this, the error below appears.
It seems there is a limitation to 32 bit for the…
Wanted to try out VUnit, thus followed the Getting Started 1-2-3.
For blog 1, I installed Python ver. 3.6 and using ModelSim ver. 10.5a.
For blog 2, I downloaded example project udp_ip_stack-master.zip example project, but when I run:
python…
How to test sequential components properly with VUnit testing library and using VHDL? I've been using it to test combinatorial components using wait for statements etc. Example of it here in my github repo.
Obviously I've to generate a clock signal…