Further performance improvements for FP math #733
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-fuzzer | |
on: | |
push: | |
branches: [master, stable-*] | |
pull_request: | |
branches: [master, stable-*] | |
jobs: | |
afl-tests: | |
name: Fuzzer Compilation ${{ matrix.compiler }} | |
runs-on: ubuntu-latest | |
env: | |
CC: ${{ matrix.compiler }} | |
strategy: | |
matrix: | |
compiler: [clang, gcc] | |
steps: | |
- uses: actions/checkout@v2.4.0 | |
- name: Configure build | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Debug .. | |
- name: Build | |
run: | | |
cd build | |
make fuzzers | |
- name: Run fuzzers once | |
run: | | |
cd build | |
for fuzzer in bin/fuzzer*; do | |
echo $fuzzer | |
$fuzzer --generate inputData | |
$fuzzer inputData | |
done | |
libfuzzer-test: | |
name: LibFuzzer Compilation ${{ matrix.compiler }} | |
runs-on: ubuntu-latest | |
env: | |
CC: ${{ matrix.compiler }} | |
strategy: | |
matrix: | |
compiler: [clang] | |
steps: | |
- uses: actions/checkout@v2.4.0 | |
- name: Configure build | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_LIBFUZZER=ON .. | |
- name: Build | |
run: | | |
cd build | |
make fuzzers | |
- name: Run fuzzers once | |
run: | | |
cd build | |
for fuzzer in bin/fuzzer*; do | |
echo $fuzzer | |
$fuzzer -runs=100000 -max_total_time=60 -timeout=120 | |
done |