Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpretet/svut
SVUT is a simple framework to create Verilog/SystemVerilog unit tests. Just focus on your tests!
https://github.com/dpretet/svut
flow foss gtkwave icarus-verilog mit-license python simulation simulator svut systemverilog tdd tdd-utilities testcase vcd verification-methodologies verilator verilog
Last synced: about 2 months ago
JSON representation
SVUT is a simple framework to create Verilog/SystemVerilog unit tests. Just focus on your tests!
- Host: GitHub
- URL: https://github.com/dpretet/svut
- Owner: dpretet
- License: mit
- Created: 2017-03-12T07:31:41.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-10-27T18:31:28.000Z (about 2 years ago)
- Last Synced: 2024-05-02T01:41:39.982Z (8 months ago)
- Topics: flow, foss, gtkwave, icarus-verilog, mit-license, python, simulation, simulator, svut, systemverilog, tdd, tdd-utilities, testcase, vcd, verification-methodologies, verilator, verilog
- Language: Python
- Homepage:
- Size: 175 KB
- Stars: 61
- Watchers: 3
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SystemVerilog Unit Test (SVUT)
[![GitHub license](https://img.shields.io/github/license/dpretet/svut)](https://github.com/dpretet/svut/blob/master/LICENSE)
![Github Actions](https://github.com/dpretet/svut/actions/workflows/ci_ubuntu.yaml/badge.svg)
![Github Actions](https://github.com/dpretet/svut/actions/workflows/ci_macos.yaml/badge.svg)
[![GitHub issues](https://img.shields.io/github/issues/dpretet/svut)](https://github.com/dpretet/svut/issues)
[![GitHub stars](https://img.shields.io/github/stars/dpretet/svut)](https://github.com/dpretet/svut/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/dpretet/svut)](https://github.com/dpretet/svut/network)## Introduction
SVUT is a very simple flow to create a Verilog/SystemVerilog unit test. It is
widely inspired by [SVUnit](http://agilesoc.com/open-source-projects/svunit/),
but it's written in python and run with [Icarus
Verilog](http://iverilog.icarus.com/) or
[Verilator](https://www.veripool.org/verilator/). SVUT follows KISS principle: [Keep It
Simple, Stupid](https://en.wikipedia.org/wiki/KISS_principle).Hope it can help you!
### How to Install
#### Pypi
SVUT is available on [Pypi](https://pypi.org/project/svut/) and can be installed as following:
```bash
pip3 install svut
```#### Git
Git clone the repository in a path. Set up the SVUT environment variable
and add SVUT to `$PATH`:```bash
export SVUT=$HOME/.svut
git clone https://github.com/dpretet/svut.git $SVUT
export PATH=$SVUT:$PATH
```SVUT relies on [Icarus Verilog](http://iverilog.icarus.com/) as simulation
back-end. Please install it with your favourite package manager and be sure to
use a version greater or equal to v10.2. SVUT is tested with `v10.2` and cannot
work with lower version `<= v9.x`.SVUT can also use [Verilator](https://github.com/verilator/verilator) with a limited support
for the moment. A future release will improve it, with example & tutorial. SVUT is tested with
version `>= v4`.### How to use it
To create a unit test of a verilog module, call the command:
```bash
svutCreate your_file.v
```No argument is required. SVUT will create "your_file_testbench.sv" which contains your module
instanciated and a place to write your testcase(s). Some codes are also commented to describe the
different macros and how to create a clock or dump a VCD for
[GTKWave](https://gtkwave.sourceforge.net) or
[Surfer](https://gitlab.com/surfer-project/surfer). A C++ file being the verilator
top level is also generated (`sim_main.cpp`). It can be ignored if you don't use Verilator.
An example to understand how to use can be found [here](https://github.com/dpretet/friscv/tree/master/test/common)To run a test, call the command:
```bash
svutRun -test your_file_testbench.sv
```or simply `svutRun` to execute all testbenchs in the current folder.
```bash
svutRun
```SVUT will scan your current folder, search for the files with `_testbench.sv`
suffix and run all tests available. Multiple suffix patterns are
[possible](https://github.com/dpretet/svut/blob/master/svut/svutRun.py#L46).svutRun proposes several arguments, most optional:
- `-test`: specify the testsuite file path or a folder containing tests
- `-f`: pass the fileset description, default is `files.f`
- `-sim`: specify the simulator, `icarus` or `verilator`
- `-main`: specify the C++ main file when using verilator, default is `sim_main.cpp`
- `-define`: pass verilog defines to the tool, like `-define "DEF1=2;DEF2;DEF3=3"`
- `-vpi`: specify a compiled VPI, for instance `-vpi "-M. -mMyVPI"`
- `-dry-run`: print the commands but don't execute them
- `-include`: to pass include path, several can be passed like `-include folder1 folder2`
- `-no-splash`: don't print SVUT splash banner, printed by default
- `-compile-only`: just compile the testbench, don't execute it
- `-run-only`: just execute the testbench, if no executable found, also build it
- `-fst`: dump waveform with FST format. If not specified use VCD formatAll these arguments are common for both the simulators.
# Tutorial
Copy/paste this basic FFD model in a file named ffd.v into a new folder:
```verilog
`timescale 1 ns / 1 psmodule ffd
(
input wire aclk,
input wire arstn,
input wire d,
output reg q
);always @ (posedge aclk or negedge arstn) begin
if (arstn == 1'b0) q <= 1'b0;
else q <= d;
endendmodule
```Then run:
```bash
svutCreate ffd.v
```ffd\_testbench.v has been dropped in the folder from you called svutCreate. It
contains all you need to start populating your testcases. In the header, you
can include directly your DUT file (uncomment):```verilog
`include "ffd.v"
```or you can store the path to your file into a `files.f` file, automatically
recognized by SVUT. Populate it with the files describing your IP. You can
also specify include folder in this way:```bash
+incdir+$HOME/path/to/include/
```Right after the module instance, you can use the example to generate a clock
(to uncomment):```verilog
initial aclk = 0;
always #2 aclk = !aclk;
```Next line explains how to dump your signals values into a VCD file to open a
waveform in GTKWave (uncomment):```verilog
initial $dumpvars(0, ffd_unit_test);
initial $dumpfile("ffd_testbench.vcd");
```Two functions follow, `setup()` and `teardown()`. Use them to configure the
environment of the testcases:
- `setup()` is called before each testcase execution
- `teardown()` is called after each testcase executionA testcase is enclosed between two specific defines:
```verilog
`UNIT_TEST("TESTNAME")
...
`UNIT_TEST_END
````TESTNAME` is a string which will be displayed when test execution
will start. Then you can use the macros provided to display information,
warning, error and check some signals values. Each error encountered by a
macro increments a globla error counter which determine a testsuite status.
If the error counter is bigger than `0`, the test is considered as failed.A testsuite, comprising several `UNIT_TEST`, is declared with another define:
```verilog
`TEST_SUITE("SUITENAME")
...
`TEST_SUITE_END
```To test the FFD, add the next line into `setup()` to drive the reset and init the
FFD input:```verilog
arstn = 1'b0;
d = 1'b0;
#100;
arstn = 1'b1;
```and into the testcase:
```verilog
`FAIL_IF(q);
```Here is a basic unit test checking if the FFD output is `0` after reset. Once
called `svutRun` in your shell, you should see something similar:
SVUT relies (optionally) on files.f to declare the fileset and define. Follows an example:
```
...
+define+MY_DEFINE_SIM1
+define+MY_DEFINE_SIM2=723
./ffd.sv
+incdir+$HOME/work/mylib
...
```The user can also choose to pass define in the command line, common for both the simulator:
```bash
svutRun -test my_testbench.sv -define "DEF1=1;DEF2;DEF3=3"
```SVUT doesn't check possible collision between define passed in command line
and the others defined in `files.f`. Double check that point if unexpected
behavior occurs during testbench.Finally, SVUT supports VPI for Icarus. Follow an example to compile and set up
the flow of an hypothetic UART, compiled with iverilog and using a define "PORT":```bash
iverilog-vpi uart.c
svutRun -vpi "-M. -muart" -define "PORT=3333" -t ./my_testbench.sv &
```Now you know the basics of SVUT. The generated testbench provides prototypes of
available macros. Try them and play around to test SVUT. You can find these
files into the example folder.Enjoy!
## License
Copyright 2024 The SVUT Authors
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. imitations under the License.