diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2021-11-15 11:41:30 +0100 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2021-12-16 12:41:44 +0700 |
commit | 40849eebd9c7a92f6b670b30c9338358d8306cfe (patch) | |
tree | e6c9e5d57aa3f163b81ee0f37aaa14eecf7ae78b /test/functional/test_framework | |
parent | 8a57a06a5062dd8dfdefca4e404d0ddbd2a3da1d (diff) |
test: bump sandbox argument minimum version
The -sandbox argument is not present in the v22.0 release. Changing the minimum version to 229900 ensures it's used when testing the master branch.
If the argument is backported, the minimum version can be adjusted to e.g. 220100.
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/test_framework.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 8f75255caf..5a9f8f3adc 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -473,7 +473,8 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass): versions = [None] * num_nodes if self.is_syscall_sandbox_compiled() and not self.disable_syscall_sandbox: for i in range(len(extra_args)): - if versions[i] is None or versions[i] >= 219900: + # The -sandbox argument is not present in the v22.0 release. + if versions[i] is None or versions[i] >= 229900: extra_args[i] = extra_args[i] + ["-sandbox=log-and-abort"] if binary is None: binary = [get_bin_from_version(v, 'bitcoind', self.options.bitcoind) for v in versions] |