diff options
Diffstat (limited to 'testing/mozharness/configs/android/androidx86.py')
-rw-r--r-- | testing/mozharness/configs/android/androidx86.py | 182 |
1 files changed, 182 insertions, 0 deletions
diff --git a/testing/mozharness/configs/android/androidx86.py b/testing/mozharness/configs/android/androidx86.py new file mode 100644 index 000000000..e74551d0a --- /dev/null +++ b/testing/mozharness/configs/android/androidx86.py @@ -0,0 +1,182 @@ +import os + +config = { + "buildbot_json_path": "buildprops.json", + "hostutils_manifest_path": "testing/config/tooltool-manifests/linux64/hostutils.manifest", + "robocop_package_name": "org.mozilla.roboexample.test", + "device_ip": "127.0.0.1", + "tooltool_manifest_path": "testing/config/tooltool-manifests/androidx86/releng.manifest", + "tooltool_cache": "/builds/tooltool_cache", + "avds_dir": "/home/cltbld/.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": "-debug init,console,gles,memcheck,adbserver,adbclient,adb,avd_config,socket -qemu -m 1024 -enable-kvm", + "device_manager": "adb", + "exes": { + 'adb': '%(abs_work_dir)s/android-sdk18/platform-tools/adb', + 'python': '/tools/buildbot/bin/python', + 'virtualenv': ['/tools/buildbot/bin/python', '/tools/misc-python/virtualenv.py'], + 'tooltool.py': "/tools/tooltool.py", + }, + "env": { + "DISPLAY": ":0.0", + "PATH": "%(PATH)s:%(abs_work_dir)s/android-sdk18/tools:%(abs_work_dir)s/android-sdk18/platform-tools", + }, + "default_actions": [ + 'clobber', + 'read-buildbot-config', + 'setup-avds', + 'start-emulators', + 'download-and-extract', + 'create-virtualenv', + 'install', + 'run-tests', + 'stop-emulators', + ], + "emulators": [ + { + "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, + }, + { + "name": "test-2", + "device_id": "emulator-5556", + "http_port": "8856", # starting http port to use for the mochitest server + "ssl_port": "4456", # starting ssl port to use for the server + "emulator_port": 5556, + }, + { + "name": "test-3", + "device_id": "emulator-5558", + "http_port": "8858", # starting http port to use for the mochitest server + "ssl_port": "4458", # starting ssl port to use for the server + "emulator_port": 5558, + }, + { + "name": "test-4", + "device_id": "emulator-5560", + "http_port": "8860", # starting http port to use for the mochitest server + "ssl_port": "4460", # starting ssl port to use for the server + "emulator_port": 5560, + } + ], + "suite_definitions": { + "mochitest": { + "run_filename": "runtestsremote.py", + "options": ["--app=%(app)s", + "--remote-webserver=%(remote_webserver)s", + "--xre-path=%(xre_path)s", + "--utility-path=%(utility_path)s", + "--http-port=%(http_port)s", + "--ssl-port=%(ssl_port)s", + "--certificate-path=%(certs_path)s", + "--symbols-path=%(symbols_path)s", + "--quiet", + "--log-raw=%(raw_log_file)s", + "--log-errorsummary=%(error_summary_file)s", + "--screenshot-on-fail", + ], + }, + "reftest": { + "run_filename": "remotereftest.py", + "options": ["--app=%(app)s", + "--ignore-window-size", + "--remote-webserver=%(remote_webserver)s", + "--xre-path=%(xre_path)s", + "--utility-path=%(utility_path)s", + "--http-port=%(http_port)s", + "--ssl-port=%(ssl_port)s", + "--httpd-path", "%(modules_dir)s", + "--symbols-path=%(symbols_path)s", + ], + }, + "xpcshell": { + "run_filename": "remotexpcshelltests.py", + "options": ["--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 + "test_suite_definitions": { + "jsreftest": { + "category": "reftest", + "tests": ["../jsreftest/tests/jstests.list"], + "extra_args": [ + "--suite=jstestbrowser", + "--extra-profile-file=jsreftest/tests/user.js" + ] + }, + "mochitest-1": { + "category": "mochitest", + "extra_args": ["--total-chunks=2", "--this-chunk=1"], + }, + "mochitest-2": { + "category": "mochitest", + "extra_args": ["--total-chunks=2", "--this-chunk=2"], + }, + "mochitest-gl": { + "category": "mochitest", + "extra_args": ["--subsuite=webgl"], + }, + "reftest-1": { + "category": "reftest", + "extra_args": [ + "--suite=reftest", + "--total-chunks=3", + "--this-chunk=1", + ], + "tests": ["tests/layout/reftests/reftest.list"], + }, + "reftest-2": { + "extra_args": [ + "--suite=reftest", + "--total-chunks=3", + "--this-chunk=2", + ], + "tests": ["tests/layout/reftests/reftest.list"], + }, + "reftest-3": { + "extra_args": [ + "--suite=reftest", + "--total-chunks=3", + "--this-chunk=3", + ], + "tests": ["tests/layout/reftests/reftest.list"], + }, + "crashtest": { + "category": "reftest", + "extra_args": ["--suite=crashtest"], + "tests": ["tests/testing/crashtest/crashtests.list"] + }, + "xpcshell": { + "category": "xpcshell", + # XXX --manifest is superceded by testing/config/mozharness/android_x86_config.py. + # Remove when Gecko 35 no longer in tbpl. + "extra_args": ["--manifest=tests/xpcshell_android.ini"] + }, + }, # end of "test_definitions" + "download_minidump_stackwalk": True, + "default_blob_upload_servers": [ + "https://blobupload.elasticbeanstalk.com", + ], + "blob_uploader_auth_file" : os.path.join(os.getcwd(), "oauth.txt"), +} |