run-config: Fix selftest tag filtering command

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2019-09-07 16:42:52 +01:00
parent 68c19d067d
commit 81b3587a90

View File

@ -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