From 81b3587a90ab359c44c856736b011d95c8f0913c Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 7 Sep 2019 16:42:52 +0100 Subject: [PATCH] run-config: Fix selftest tag filtering command Signed-off-by: Richard Purdie --- scripts/run-config | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/run-config b/scripts/run-config index f2c2d1b..b126a76 100755 --- a/scripts/run-config +++ b/scripts/run-config @@ -68,10 +68,12 @@ testmode = args.test # arches due to speed # toolchain tests only run on full builds if args.build_type == "quick": - ourconfig["HELPERSTMACHTARGS"] = "-t machine" + ourconfig["HELPERSTMACHTARGS"] = "-a -t machine" elif args.build_type == "full": if args.target == "qemux86" or args.target == "qemux86-64": - ourconfig["HELPERSTMACHTARGS"] = "-t machine -t toolchain-system" + ourconfig["HELPERSTMACHTARGS"] = "-a -t machine -t toolchain-system" + else: + ourconfig["HELPERSTMACHTARGS"] = "-a -t machine -t toolchain-user" # Find out the number of steps this target has maxsteps = 1