From 12f5723790bfa469e802bc21f529e9000a9d7bbc Mon Sep 17 00:00:00 2001 From: Vivien Nicolas Date: Mon, 6 Feb 2023 16:24:17 +0100 Subject: [PATCH] Add back the ability to choose a specific target when regenerating tests using scripts/tools/zap_regen_all.py --- scripts/tools/zap_regen_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tools/zap_regen_all.py b/scripts/tools/zap_regen_all.py index b5bfae13730278..1a4e5768bb209a 100755 --- a/scripts/tools/zap_regen_all.py +++ b/scripts/tools/zap_regen_all.py @@ -374,7 +374,7 @@ def getTargets(type, test_target): targets = [] if type & TargetType.TESTS: - targets.extend(getTestsTemplatesTargets('all')) + targets.extend(getTestsTemplatesTargets(test_target)) if type & TargetType.GLOBAL: targets.extend(getGlobalTemplatesTargets())