From 9a3b64707f368f17df2d0a0b95627d076c96a273 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 27 Aug 2018 13:30:37 +1200 Subject: [PATCH] autobuild: Fix -py3 support to look in tasks (the table with the tests) not tasknames (the requested list) Signed-off-by: Andrew Bartlett Reviewed-by: Gary Lockyer --- script/autobuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/autobuild.py b/script/autobuild.py index 5fac8d312d2..fcb4e4af026 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -475,7 +475,7 @@ class buildlist(object): os.environ['AUTOBUILD_RANDOM_SLEEP_OVERRIDE'] = '1' for n in tasknames: - if n not in tasknames and n.endswith("-py3"): + if n not in tasks and n.endswith("-py3"): b = builder(n, tasks[n[:-4]], cp=n is not "pidl", -- 2.11.4.GIT