mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
ossfuzz: Reduce test input size to less than equal to 600 bytes.
This commit is contained in:
@@ -22,6 +22,6 @@ using namespace std;
|
||||
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* _data, size_t _size)
|
||||
{
|
||||
string input(reinterpret_cast<char const*>(_data), _size);
|
||||
FuzzerUtil::testConstantOptimizer(input, true);
|
||||
FuzzerUtil::testConstantOptimizer(input, /*quiet=*/true);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user