From fa086d891b912d30fd4b8748ef4fd816ffad51d7 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Fri, 4 Feb 2022 10:58:35 +0100 Subject: [PATCH] test: Properly skip feature_syscall_sandbox in valgrind Follow up to commit fa9c26ab3a09c843cb598d188162403bbf8c9b36 --- test/functional/feature_syscall_sandbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):