mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Ignore standard error output from solvers
This commit is contained in:
parent
a4b4e70b67
commit
475cfe2532
@ -57,7 +57,8 @@ ReadCallback::Result solveWithTemporaryFile(
|
|||||||
boost::process::child solver(
|
boost::process::child solver(
|
||||||
_pathToBinary,
|
_pathToBinary,
|
||||||
boost::process::args(_commandArgs),
|
boost::process::args(_commandArgs),
|
||||||
boost::process::std_out > out
|
boost::process::std_out > out,
|
||||||
|
boost::process::std_err > boost::process::null
|
||||||
);
|
);
|
||||||
|
|
||||||
std::vector<std::string> data;
|
std::vector<std::string> data;
|
||||||
@ -83,7 +84,8 @@ ReadCallback::Result solveWithPipe(
|
|||||||
_pathToBinary,
|
_pathToBinary,
|
||||||
boost::process::args(_commandArgs),
|
boost::process::args(_commandArgs),
|
||||||
boost::process::std_out > out,
|
boost::process::std_out > out,
|
||||||
boost::process::std_in < in
|
boost::process::std_in < in,
|
||||||
|
boost::process::std_err > boost::process::null
|
||||||
);
|
);
|
||||||
|
|
||||||
in << _query << std::flush;
|
in << _query << std::flush;
|
||||||
|
Loading…
Reference in New Issue
Block a user