Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 419 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 419 Bytes

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