mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add --without-optimizer option to fuzzer
This commit is contained in:
parent
a3f77527e9
commit
23182c7fdf
@ -121,13 +121,12 @@ void testStandardCompiler()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void testCompiler()
|
void testCompiler(bool optimize)
|
||||||
{
|
{
|
||||||
if (!quiet)
|
if (!quiet)
|
||||||
cout << "Testing compiler." << endl;
|
cout << "Testing compiler " << (optimize ? "with" : "without") << " optimizer." << endl;
|
||||||
string input = readInput();
|
string input = readInput();
|
||||||
|
|
||||||
bool optimize = true;
|
|
||||||
string outputString(compileJSON(input.c_str(), optimize));
|
string outputString(compileJSON(input.c_str(), optimize));
|
||||||
Json::Value outputJson;
|
Json::Value outputJson;
|
||||||
if (!Json::Reader().parse(outputString, outputJson))
|
if (!Json::Reader().parse(outputString, outputJson))
|
||||||
@ -191,6 +190,10 @@ Allowed options)",
|
|||||||
"const-opt",
|
"const-opt",
|
||||||
"Run the constant optimizer instead of compiling. "
|
"Run the constant optimizer instead of compiling. "
|
||||||
"Expects a binary string of up to 32 bytes on stdin."
|
"Expects a binary string of up to 32 bytes on stdin."
|
||||||
|
)
|
||||||
|
(
|
||||||
|
"without-optimizer",
|
||||||
|
"Run without optimizations. Cannot be used together with standard-json."
|
||||||
);
|
);
|
||||||
|
|
||||||
po::variables_map arguments;
|
po::variables_map arguments;
|
||||||
@ -216,7 +219,7 @@ Allowed options)",
|
|||||||
else if (arguments.count("standard-json"))
|
else if (arguments.count("standard-json"))
|
||||||
testStandardCompiler();
|
testStandardCompiler();
|
||||||
else
|
else
|
||||||
testCompiler();
|
testCompiler(!arguments.count("without-optimizer"));
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user