feat(fuzz): Adds net class fuzzer

This commit is contained in:
Nathaniel Brough
2022-11-16 02:24:59 +00:00
committed by hathach
parent 9cc93e6d41
commit 6492f4a18d
14 changed files with 824 additions and 31 deletions

View File

@@ -19,6 +19,7 @@ jobs:
fuzz_harness:
- "device/cdc"
- "device/msc"
- "device/net"
steps:
- name: Setup Python
@@ -28,6 +29,9 @@ jobs:
uses: actions/checkout@v3
- name: Fetch deps
run: sudo apt update && sudo apt install libc++abi-dev libc++-dev
run: |
sudo apt update && sudo apt install libc++abi-dev libc++-dev
make CC=clang CXX=clang++ -C fuzz/${{ matrix.fuzz_harness }} get-deps
- name: Build Fuzzer
run: make CC=clang CXX=clang++ -C fuzz/${{ matrix.fuzz_harness }}