Skip to content

Commit

Permalink
autotest: stop printing test names out when autotest.py run
Browse files Browse the repository at this point in the history
it's just garbage for most people.  There's always --list-tests or whatever to find these
  • Loading branch information
peterbarker authored and pull[bot] committed Nov 2, 2023
1 parent bd80d22 commit 80a5a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/autotest/autotest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 80a5a9c

Please sign in to comment.