diff options
| author | Micky Yun Chan <[email protected]> | 2019-12-18 14:54:25 +0800 |
|---|---|---|
| committer | Micky Yun Chan <[email protected]> | 2020-01-25 15:51:35 +0800 |
| commit | 2d23082cbe4641175d752a5969f67cdadf1afcea (patch) | |
| tree | 99c97bfda49497de34cbda28efd44cd1ae606170 /test/functional/feature_help.py | |
| parent | Merge #17764: doc: Add formatting to the good first issue template (diff) | |
| download | discoin-2d23082cbe4641175d752a5969f67cdadf1afcea.tar.xz discoin-2d23082cbe4641175d752a5969f67cdadf1afcea.zip | |
bump test timeouts so that functional tests run in valgrind
Diffstat (limited to 'test/functional/feature_help.py')
| -rwxr-xr-x | test/functional/feature_help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_help.py b/test/functional/feature_help.py index ed1d25c0d..e3e245618 100755 --- a/test/functional/feature_help.py +++ b/test/functional/feature_help.py @@ -17,7 +17,7 @@ class HelpTest(BitcoinTestFramework): # Don't start the node def get_node_output(self, *, ret_code_expected): - ret_code = self.nodes[0].process.wait(timeout=5) + ret_code = self.nodes[0].process.wait(timeout=60) assert_equal(ret_code, ret_code_expected) self.nodes[0].stdout.seek(0) self.nodes[0].stderr.seek(0) |