1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-10-29 22:24:51 +00:00

framework/target: rename get_target_descriptions

Rename get_target_descriptions to list_target_descriptions.
This commit is contained in:
Sergei Trofimov
2017-12-15 09:45:08 +00:00
committed by marcbonnici
parent 7bd99637c1
commit 0a67e94709
6 changed files with 11 additions and 11 deletions

View File

@@ -6,7 +6,7 @@ from collections import OrderedDict
from distutils.dir_util import copy_tree
from wa import ComplexCommand, SubCommand, pluginloader, settings
from wa.framework.target.descriptor import get_target_descriptions
from wa.framework.target.descriptor import list_target_descriptions
from wa.framework.exception import ConfigError, CommandError
from wa.utils.misc import (ensure_directory_exists as _d, capitalize,
ensure_file_directory_exists as _f)
@@ -41,7 +41,7 @@ class CreateAgendaSubcommand(SubCommand):
agenda['workloads'] = []
target_desc = None
targets = {td.name: td for td in get_target_descriptions()}
targets = {td.name: td for td in list_target_descriptions()}
for name in args.plugins:
if name in targets:

View File

@@ -15,7 +15,7 @@
from wa import Command
from wa.framework import pluginloader
from wa.framework.target.descriptor import get_target_descriptions
from wa.framework.target.descriptor import list_target_descriptions
from wa.utils.doc import get_summary
from wa.utils.formatter import DescriptionListFormatter
@@ -65,7 +65,7 @@ def get_kinds():
def list_targets():
targets = get_target_descriptions()
targets = list_target_descriptions()
targets = sorted(targets, key=lambda x: x.name)
output = DescriptionListFormatter()

View File

@@ -17,7 +17,7 @@ from subprocess import call, Popen, PIPE
from wa import Command
from wa.framework import pluginloader
from wa.framework.exception import NotFoundError
from wa.framework.target.descriptor import get_target_descriptions
from wa.framework.target.descriptor import list_target_descriptions
from wa.utils.doc import (strip_inlined_text, get_rst_from_plugin,
get_params_rst, underline)
from wa.utils.misc import which
@@ -71,7 +71,7 @@ def get_plugin(name):
def get_target_description(name):
targets = get_target_descriptions()
targets = list_target_descriptions()
for target in targets:
if name == target.name:
return target