diff options
| author | MarcoFalke <[email protected]> | 2020-07-10 16:06:11 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-07-10 16:06:28 +0200 |
| commit | 107b8559c5a7ed4c514e50d1df6bd2407d1d6f27 (patch) | |
| tree | 0a0925aa61f7da26d5e619ac1e9fdd3784256e5c /test/functional/test_runner.py | |
| parent | Merge #19469: rpc: deprecate banscore field in getpeerinfo (diff) | |
| parent | net: Use mockable time for ping/pong, add tests (diff) | |
| download | discoin-107b8559c5a7ed4c514e50d1df6bd2407d1d6f27.tar.xz discoin-107b8559c5a7ed4c514e50d1df6bd2407d1d6f27.zip | |
Merge #18638: net: Use mockable time for ping/pong, add tests
fa3365430c5fb57d7c0b5f2bce9fbbe290be93c3 net: Use mockable time for ping/pong, add tests (MarcoFalke)
faab4aaf2fa1153c6d76efc8113fa01b06943ece util: Add count_microseconds helper (MarcoFalke)
Pull request description:
Switch `CNode::m_ping_start` and `CNetMessage::m_time` to mockable time, so that tests can be added.
Mockable time is also type-safe, since it uses `std::chrono`
ACKs for top commit:
jonatack:
Code review re-ACK fa33654 re-read code, verified rebase per `git range-diff 4b5c919 fa94d6f fa33654`, previous tested ACKs still valid
troygiorshev:
ACK fa3365430c5fb57d7c0b5f2bce9fbbe290be93c3
Tree-SHA512: 7d632bd6019ce7c882029e71b667a61517e783af82755a85dd979ef09380934e172dec8b8f91d57b200a30a6e096aeaf01f19fee7f3aed0e0e871c72eb44d70e
Diffstat (limited to 'test/functional/test_runner.py')
| -rwxr-xr-x | test/functional/test_runner.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index 6deba9a9e..867a9909a 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -236,6 +236,7 @@ BASE_SCRIPTS = [ 'mempool_compatibility.py', 'rpc_deriveaddresses.py', 'rpc_deriveaddresses.py --usecli', + 'p2p_ping.py', 'rpc_scantxoutset.py', 'feature_logging.py', 'p2p_node_network_limited.py', |