mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Test solidity_free in tests too
This commit is contained in:
parent
b9c35916e5
commit
2ccf3ea4ab
@ -59,8 +59,9 @@ bool containsError(Json::Value const& _compilerResult, string const& _type, stri
|
|||||||
|
|
||||||
Json::Value compile(string const& _input, CStyleReadFileCallback _callback = nullptr)
|
Json::Value compile(string const& _input, CStyleReadFileCallback _callback = nullptr)
|
||||||
{
|
{
|
||||||
string output(solidity_compile(_input.c_str(), _callback, nullptr));
|
const char* output_ptr = solidity_compile(_input.c_str(), _callback, nullptr);
|
||||||
// This should be safe given the above copies the output.
|
string output(output_ptr);
|
||||||
|
solidity_free(output_ptr);
|
||||||
solidity_reset();
|
solidity_reset();
|
||||||
Json::Value ret;
|
Json::Value ret;
|
||||||
BOOST_REQUIRE(jsonParseStrict(output, ret));
|
BOOST_REQUIRE(jsonParseStrict(output, ret));
|
||||||
|
Loading…
Reference in New Issue
Block a user