while working on #1947, I noticed that protocols/fuzz-test isn’t included in the CI.
During the review, @Shourya742 spotted an old reference to roles_logic_sv2 there: #1947 (review)
It wasn’t caught by the CI because that target isn’t being executed anywhere.
Currently, the only fuzz-test being executed is the one from buffer:
|
- name: fuzz tests |
|
run: | |
|
if [ ${{ matrix.os }} == "ubuntu-latest" ]; then |
|
./run.sh 30 |
|
else |
|
echo "Skipping fuzz test on ${{ matrix.os }} - not supported" |
|
fi |
|
working-directory: utils/buffer/fuzz |
while working on #1947, I noticed that
protocols/fuzz-testisn’t included in the CI.During the review, @Shourya742 spotted an old reference to
roles_logic_sv2there: #1947 (review)It wasn’t caught by the CI because that target isn’t being executed anywhere.
Currently, the only fuzz-test being executed is the one from buffer:
stratum/.github/workflows/test.yaml
Lines 60 to 67 in 1223d14