mirror of https://github.com/arendst/Tasmota.git
9 lines
263 B
Bash
9 lines
263 B
Bash
|
#!/bin/bash
|
||
|
# This script mimics an invocation from https://github.com/google/oss-fuzz
|
||
|
|
||
|
export CXX='clang++'
|
||
|
export CXXFLAGS='-fsanitize-coverage=trace-pc-guard -fsanitize=address'
|
||
|
export LIB_FUZZING_ENGINE=-lFuzzer
|
||
|
make OUT=.
|
||
|
./json_fuzzer my_corpus seed_corpus
|