2018-07-04 15:39:44 +01:00
|
|
|
# Copyright 2018 ARM Limited
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
2017-04-27 17:35:42 +01:00
|
|
|
from wa.framework import pluginloader, signal
|
2017-04-13 11:13:15 +01:00
|
|
|
from wa.framework.command import Command, ComplexCommand, SubCommand
|
2017-03-09 14:44:26 +00:00
|
|
|
from wa.framework.configuration import settings
|
2017-03-20 16:24:22 +00:00
|
|
|
from wa.framework.configuration.core import Status
|
2018-03-01 14:10:20 +00:00
|
|
|
from wa.framework.exception import (CommandError, ConfigError, HostError, InstrumentError,
|
|
|
|
JobError, NotFoundError, OutputProcessorError,
|
|
|
|
PluginLoaderError, ResourceError, TargetError,
|
|
|
|
TargetNotRespondingError, TimeoutError, ToolError,
|
|
|
|
ValidationError, WAError, WorkloadError, WorkerThreadError)
|
2018-05-30 11:22:14 +01:00
|
|
|
from wa.framework.instrument import (Instrument, extremely_slow, very_slow, slow, normal, fast,
|
2018-06-12 11:06:52 +01:00
|
|
|
very_fast, extremely_fast, hostside)
|
2017-12-13 13:36:11 +00:00
|
|
|
from wa.framework.output import RunOutput, discover_wa_outputs
|
2018-01-12 15:22:11 +00:00
|
|
|
from wa.framework.output_processor import OutputProcessor
|
2018-05-23 13:58:54 +01:00
|
|
|
from wa.framework.plugin import Plugin, Parameter, Alias
|
2017-03-21 16:00:18 +00:00
|
|
|
from wa.framework.resource import (NO_ONE, JarFile, ApkFile, ReventFile, File,
|
|
|
|
Executable)
|
2018-03-01 16:18:18 +00:00
|
|
|
from wa.framework.target.descriptor import (TargetDescriptor, TargetDescription,
|
|
|
|
create_target_description, add_description_for_target)
|
2017-11-30 16:40:01 +00:00
|
|
|
from wa.framework.workload import (Workload, ApkWorkload, ApkUiautoWorkload,
|
|
|
|
ApkReventWorkload, UIWorkload, UiautoWorkload,
|
|
|
|
ReventWorkload)
|
2018-06-14 17:28:45 +01:00
|
|
|
|
|
|
|
|
|
|
|
from wa.framework.version import get_wa_version, get_wa_version_with_commit
|
|
|
|
|
|
|
|
__version__ = get_wa_version()
|
|
|
|
__full_version__ = get_wa_version_with_commit()
|