halcheck 1.0
Loading...
Searching...
No Matches
fuzz.hpp
1#ifndef HALCHECK_CLANG_FUZZER_HPP
2#define HALCHECK_CLANG_FUZZER_HPP
3
4#if __clang__
5#include <halcheck/test/strategy.hpp>
6
7#include <cstdint>
8#include <string>
9#include <vector>
10
11namespace halcheck { namespace clang {
12
13test::strategy fuzz(
14 std::uintmax_t max_size = 100,
15 std::uintmax_t max_length = 128,
16 const std::vector<std::string> &args = {"-rss_limit_mb=0", "-len_control=0", "-reduce-inputs=0", "-runs=1000"});
17
18}} // namespace halcheck::clang
19#endif
20
21#endif