mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-23 06:06:19 +01:00
Squashed 'externals/catch/' content from commit ab6c7375b
git-subtree-dir: externals/catch git-subtree-split: ab6c7375be9a8e71ee84c6f8537113f9f47daf99
This commit is contained in:
commit
6879e5bb1c
521 changed files with 182737 additions and 0 deletions
16
fuzzing/fuzz_TestSpecParser.cpp
Normal file
16
fuzzing/fuzz_TestSpecParser.cpp
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
//License: Boost 1.0
|
||||
//By Paul Dreik 2020
|
||||
|
||||
#include <catch2/internal/catch_test_spec_parser.hpp>
|
||||
#include <catch2/internal/catch_tag_alias_registry.hpp>
|
||||
|
||||
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
||||
|
||||
Catch::TagAliasRegistry tar;
|
||||
Catch::TestSpecParser tsp(tar);
|
||||
|
||||
std::string buf(Data,Data+Size);
|
||||
tsp.parse(buf);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue