@@ -75,6 +75,8 @@ IPCSocket::IPCSocket(string const& _path): m_path(_path)
75
75
BOOST_FAIL (" Error connecting to IPC socket: " << _path);
76
76
77
77
m_fp = fdopen (m_socket, " r" );
78
+ if (!m_fp)
79
+ BOOST_FAIL (" Error opening IPC socket: " << _path);
78
80
#endif
79
81
}
80
82
@@ -109,7 +111,9 @@ string IPCSocket::sendRequest(string const& _req)
109
111
if (!fSuccess )
110
112
BOOST_FAIL (" ReadFile from pipe failed" );
111
113
112
- cerr << " ." ; // Output for log activity
114
+ // This is needed for Appveyor, otherwise it may terminate
115
+ // the session due to the inactivity.
116
+ cerr << " ." ;
113
117
return returnStr;
114
118
#else
115
119
send (m_socket, _req.c_str (), _req.length (), 0 );
@@ -187,7 +191,7 @@ string RPCSession::eth_getStorageRoot(string const& _address, string const& _blo
187
191
188
192
void RPCSession::personal_unlockAccount (string const & _address, string const & _password, int _duration)
189
193
{
190
- rpcCall (" personal_unlockAccount" , { quote (_address), quote (_password), to_string (_duration) });
194
+ BOOST_REQUIRE ( rpcCall (" personal_unlockAccount" , { quote (_address), quote (_password), to_string (_duration) }) == true );
191
195
}
192
196
193
197
string RPCSession::personal_newAccount (string const & _password)
@@ -231,18 +235,18 @@ void RPCSession::test_setChainParams(vector<string> const& _accounts)
231
235
232
236
void RPCSession::test_setChainParams (string const & _config)
233
237
{
234
- rpcCall (" test_setChainParams" , { _config });
238
+ BOOST_REQUIRE ( rpcCall (" test_setChainParams" , { _config }) == true );
235
239
}
236
240
237
241
void RPCSession::test_rewindToBlock (size_t _blockNr)
238
242
{
239
- rpcCall (" test_rewindToBlock" , { to_string (_blockNr) });
243
+ BOOST_REQUIRE ( rpcCall (" test_rewindToBlock" , { to_string (_blockNr) }) == true );
240
244
}
241
245
242
246
void RPCSession::test_mineBlocks (int _number)
243
247
{
244
248
u256 startBlock = fromBigEndian<u256>(fromHex (rpcCall (" eth_blockNumber" ).asString ()));
245
- rpcCall (" test_mineBlocks" , { to_string (_number) }, true );
249
+ BOOST_REQUIRE ( rpcCall (" test_mineBlocks" , { to_string (_number) }, true ) == true );
246
250
247
251
bool mined = false ;
248
252
@@ -281,7 +285,7 @@ void RPCSession::test_mineBlocks(int _number)
281
285
282
286
void RPCSession::test_modifyTimestamp (size_t _timestamp)
283
287
{
284
- rpcCall (" test_modifyTimestamp" , { to_string (_timestamp) });
288
+ BOOST_REQUIRE ( rpcCall (" test_modifyTimestamp" , { to_string (_timestamp) }) == true );
285
289
}
286
290
287
291
Json::Value RPCSession::rpcCall (string const & _methodName, vector<string> const & _args, bool _canFail)
@@ -302,7 +306,7 @@ Json::Value RPCSession::rpcCall(string const& _methodName, vector<string> const&
302
306
// cout << "Reply: " << reply << endl;
303
307
304
308
Json::Value result;
305
- Json::Reader ().parse (reply, result, false );
309
+ BOOST_REQUIRE ( Json::Reader ().parse (reply, result, false ) );
306
310
307
311
if (result.isMember (" error" ))
308
312
{
0 commit comments