summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/runner/lib/executor.py2
-rw-r--r--test/runner/lib/sanity/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/runner/lib/executor.py b/test/runner/lib/executor.py
index 9124f2fefc..36f500ef2e 100644
--- a/test/runner/lib/executor.py
+++ b/test/runner/lib/executor.py
@@ -1235,7 +1235,7 @@ def command_units(args):
raise AllTargetsSkipped()
if args.delegate:
- raise Delegate(require=changes)
+ raise Delegate(require=changes, exclude=args.exclude)
version_commands = []
diff --git a/test/runner/lib/sanity/__init__.py b/test/runner/lib/sanity/__init__.py
index ed4b0a5fec..724d1fcab5 100644
--- a/test/runner/lib/sanity/__init__.py
+++ b/test/runner/lib/sanity/__init__.py
@@ -65,7 +65,7 @@ def command_sanity(args):
raise AllTargetsSkipped()
if args.delegate:
- raise Delegate(require=changes)
+ raise Delegate(require=changes, exclude=args.exclude)
install_command_requirements(args)