summaryrefslogtreecommitdiffstats
path: root/testing/mozharness/configs/android/androidx86-tc.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/mozharness/configs/android/androidx86-tc.py')
-rw-r--r--testing/mozharness/configs/android/androidx86-tc.py73
1 files changed, 0 insertions, 73 deletions
diff --git a/testing/mozharness/configs/android/androidx86-tc.py b/testing/mozharness/configs/android/androidx86-tc.py
deleted file mode 100644
index 8141b77f6..000000000
--- a/testing/mozharness/configs/android/androidx86-tc.py
+++ /dev/null
@@ -1,73 +0,0 @@
-import os
-
-config = {
- "buildbot_json_path": "buildprops.json",
- "hostutils_manifest_path": "testing/config/tooltool-manifests/linux64/hostutils.manifest",
- "tooltool_manifest_path": "testing/config/tooltool-manifests/androidx86/releng.manifest",
- "tooltool_cache": "/home/worker/tooltool_cache",
- "download_tooltool": True,
- "tooltool_servers": ['http://relengapi/tooltool/'],
- "avds_dir": "/home/worker/workspace/build/.android",
- "emulator_manifest": """
- [
- {
- "size": 193383673,
- "digest": "6609e8b95db59c6a3ad60fc3dcfc358b2c8ec8b4dda4c2780eb439e1c5dcc5d550f2e47ce56ba14309363070078d09b5287e372f6e95686110ff8a2ef1838221",
- "algorithm": "sha512",
- "filename": "android-sdk18_0.r18moz1.orig.tar.gz",
- "unpack": "True"
- }
- ] """,
- "emulator_process_name": "emulator64-x86",
- "emulator_extra_args": "-show-kernel -debug init,console,gles,memcheck,adbserver,adbclient,adb,avd_config,socket -qemu -m 1024",
- "device_manager": "adb",
- "exes": {
- 'adb': '%(abs_work_dir)s/android-sdk18/platform-tools/adb',
- },
- "env": {
- "DISPLAY": ":0.0",
- "PATH": "%(PATH)s:%(abs_work_dir)s/android-sdk18/tools:%(abs_work_dir)s/android-sdk18/platform-tools",
- "MINIDUMP_SAVEPATH": "%(abs_work_dir)s/../minidumps"
- },
- "default_actions": [
- 'clobber',
- 'read-buildbot-config',
- 'setup-avds',
- 'start-emulator',
- 'download-and-extract',
- 'create-virtualenv',
- 'verify-emulator',
- 'run-tests',
- ],
- "emulator": {
- "name": "test-1",
- "device_id": "emulator-5554",
- "http_port": "8854", # starting http port to use for the mochitest server
- "ssl_port": "4454", # starting ssl port to use for the server
- "emulator_port": 5554,
- },
- "suite_definitions": {
- "xpcshell": {
- "run_filename": "remotexpcshelltests.py",
- "testsdir": "xpcshell",
- "install": False,
- "options": [
- "--dm_trans=adb",
- "--xre-path=%(xre_path)s",
- "--testing-modules-dir=%(modules_dir)s",
- "--apk=%(installer_path)s",
- "--no-logfiles",
- "--symbols-path=%(symbols_path)s",
- "--manifest=tests/xpcshell.ini",
- "--log-raw=%(raw_log_file)s",
- "--log-errorsummary=%(error_summary_file)s",
- "--test-plugin-path=none",
- ],
- },
- }, # end suite_definitions
- "download_minidump_stackwalk": True,
- "default_blob_upload_servers": [
- "https://blobupload.elasticbeanstalk.com",
- ],
- "blob_uploader_auth_file": os.path.join(os.getcwd(), "oauth.txt"),
-}