From 3a5567265ae09148796229c35de6ea4e93111751 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Thu, 9 Mar 2023 12:38:10 +1100 Subject: [PATCH] autotest: stop printing test names out when autotest.py run it's just garbage for most people. There's always --list-tests or whatever to find these --- Tools/autotest/autotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index c03f21f817..2585e2f83b 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -415,7 +415,7 @@ def run_specific_test(step, *args, **kwargs): global tester tester = tester_class(*args, **kwargs) - print("Got %s" % str(tester)) + # print("Got %s" % str(tester)) for a in tester.tests(): if type(a) != Test: a = Test(a)