diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-02-04 10:58:35 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-02-04 16:33:05 +0100 |
commit | fa086d891b912d30fd4b8748ef4fd816ffad51d7 (patch) | |
tree | f1a6475a3bd8eb4f8121112905978984b236929a | |
parent | b2a8371913a85701759b5a2d59d46e15f28ba68f (diff) |
test: Properly skip feature_syscall_sandbox in valgrind
Follow up to commit fa9c26ab3a09c843cb598d188162403bbf8c9b36
-rwxr-xr-x | test/functional/feature_syscall_sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_syscall_sandbox.py b/test/functional/feature_syscall_sandbox.py index caf7f1e7fc..e430542845 100755 --- a/test/functional/feature_syscall_sandbox.py +++ b/test/functional/feature_syscall_sandbox.py @@ -14,7 +14,7 @@ class SyscallSandboxTest(BitcoinTestFramework): def skip_test_if_missing_module(self): if not self.is_syscall_sandbox_compiled(): raise SkipTest("bitcoind has not been built with syscall sandbox enabled.") - if self.options.nosandbox: + if self.disable_syscall_sandbox: raise SkipTest("--nosandbox passed to test runner.") def run_test(self): |