blob: bc478d033680c2aa016350b2b87c8348215c18f3 [file] [log] [blame]
# Copyright (C) 2016 The Android Open Source Project
#
# 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.
'''LLDB-Renderscript test suite configuration file.
This file contains the default test suite config which will be used in the
case a developer did not supply a custom one.'''
import os
from tests.harness.decorators import deprecated
class Config(object):
'''Test suite configuration object.
The Config class is used by the test suite to abstract the specifics of a
user's local setup. This config can be overridden by specifying a custom
config on the command line.'''
# pylint: disable=no-self-use
@property
def adb_path(self):
'''Path to android debug bridge on the host.'''
return 'adb'
@property
def host_port(self):
'''Specify host port which lldb-server will be forwarded to.
Specify the starting host port number that lldb-server (on the target)
will be forwarded to on the host. Each successive test will increment
onwards from this initial port.'''
return 1234
@property
def device_port(self):
'''Specify the port number that lldb-server (on the device) listens on.
When lldb-server is spawned on the device it will listen on this port.
Each successive test will increment onwards from this port.'''
return 1234
@property
def lldb_server_path_device(self):
'''Path to the lldb-server executable on the device.'''
return '/data/lldb-server'
@property
def lldb_server_path_host(self):
'''Path to the lldb-server executable on host (if using -run-emu).'''
return 'lldb-server'
@property
def aosp_product_path(self):
'''The path to the "out" folder of the AOSP repository.'''
return os.getenv('ANDROID_PRODUCT_OUT')
@property
def log_file_path(self):
'''The path to the file where the log will be written.'''
return os.path.join(os.getcwd(), 'LLDBTestsuiteLog.txt')
@property
def results_file_path(self):
'''The path to the file where junit results.xml will be written.'''
return os.path.join(os.getcwd(), 'results.xml')
@property
def lldb_path(self):
'''The path to lldb executable on the host.'''
return 'lldb'
@property
def blocklist(self):
'''Provide a test blocklist for skipping specific tests.
To specify the blocklist from the command line the following can be
used: --blocklist test1.py test2.py ...'''
return []
@property
def verbose(self):
'''Flag to indicate whether to store extra output in the logs.'''
return False
@property
def device(self):
'''Specify the device id of the device to run on.
When multiple devices or emulators are present, a specific device to
use while testing can be indicated here.'''
return os.environ.get('ANDROID_SERIAL')
@property
def timeout(self):
'''Timeout period for a single command, expressed in seconds'''
return 60 * 15
@property
@deprecated()
def emu_cmd(self):
'''The command line for the emulator (if using -run-emu).'''
return os.path.join(os.path.dirname(__file__), '..', '..', '..', '..',
'prebuilts', 'android-emulator', 'linux-x86_64',
'emulator')