README.md 419 Bytes
Newer Older
Clifford Wolf committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25


Running this tests with C++ coverage analysis
---------------------------------------------

```
git clone git@github.com:YosysHQ/yosys.git yosys-cover
cd yosys-cover

# Building Yosys
make config-gcov
make -j$(nproc)

# Running built-in tests
make -j$(nproc) test

# Running yosys-tests
make -j$(nproc) ystests

# Generate coverage report
make coverage

# Display coverage data
xdg-open coverage_html/index.html
```