aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2022-02-04 10:58:35 +0100
committerMarcoFalke <falke.marco@gmail.com>2022-02-04 16:33:05 +0100
commitfa086d891b912d30fd4b8748ef4fd816ffad51d7 (patch)
treef1a6475a3bd8eb4f8121112905978984b236929a /test
parentb2a8371913a85701759b5a2d59d46e15f28ba68f (diff)
downloadbitcoin-fa086d891b912d30fd4b8748ef4fd816ffad51d7.tar.xz
test: Properly skip feature_syscall_sandbox in valgrind
Follow up to commit fa9c26ab3a09c843cb598d188162403bbf8c9b36
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/feature_syscall_sandbox.py2
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):