Re: [PATCH uci 1/6] tests: add libFuzzer based fuzzing

2020-10-05 Thread Petr Štetiar
Hauke Mehrtens [2020-10-04 17:13:41]: Hi, > I get a linker error when using "-stdlib=libc++" on Debian stable with > clang-7. When I remove it this links and works fine. I think this will > cause a mix up of libstdc++ and libc++ which is not supported. sorry about that, but this is kind of

Re: [PATCH uci 1/6] tests: add libFuzzer based fuzzing

2020-10-04 Thread Hauke Mehrtens
On 10/3/20 9:48 AM, Petr Štetiar wrote: > LibFuzzer is in-process, coverage-guided, evolutionary fuzzing engine. > > LibFuzzer is linked with the library under test, and feeds fuzzed inputs > to the library via a specific fuzzing entrypoint (aka "target > function"); the fuzzer then tracks which

[PATCH uci 1/6] tests: add libFuzzer based fuzzing

2020-10-03 Thread Petr Štetiar
LibFuzzer is in-process, coverage-guided, evolutionary fuzzing engine. LibFuzzer is linked with the library under test, and feeds fuzzed inputs to the library via a specific fuzzing entrypoint (aka "target function"); the fuzzer then tracks which areas of the code are reached, and generates