Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 4 | |
michael@0 | 5 | config = { |
michael@0 | 6 | "mochitest_options": [ |
michael@0 | 7 | "--deviceIP=%(device_ip)s", |
michael@0 | 8 | "--xre-path=../hostutils/xre", |
michael@0 | 9 | "--utility-path=../hostutils/bin", "--certificate-path=certs", |
michael@0 | 10 | "--app=%(app_name)s", "--console-level=INFO", |
michael@0 | 11 | "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", |
michael@0 | 12 | "--run-only-tests=android.json", "--symbols-path=%(symbols_path)s", |
michael@0 | 13 | "--quiet" |
michael@0 | 14 | ], |
michael@0 | 15 | "reftest_options": [ |
michael@0 | 16 | "--deviceIP=%(device_ip)s", |
michael@0 | 17 | "--xre-path=../hostutils/xre", |
michael@0 | 18 | "--utility-path=../hostutils/bin", |
michael@0 | 19 | "--app=%(app_name)s", |
michael@0 | 20 | "--ignore-window-size", "--bootstrap", |
michael@0 | 21 | "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", |
michael@0 | 22 | "--symbols-path=%(symbols_path)s", |
michael@0 | 23 | "reftest/tests/layout/reftests/reftest.list" |
michael@0 | 24 | ], |
michael@0 | 25 | "crashtest_options": [ |
michael@0 | 26 | "--deviceIP=%(device_ip)s", |
michael@0 | 27 | "--xre-path=../hostutils/xre", |
michael@0 | 28 | "--utility-path=../hostutils/bin", |
michael@0 | 29 | "--app=%(app_name)s", |
michael@0 | 30 | "--enable-privilege", "--ignore-window-size", "--bootstrap", |
michael@0 | 31 | "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", |
michael@0 | 32 | "--symbols-path=%(symbols_path)s", |
michael@0 | 33 | "reftest/tests/testing/crashtest/crashtests.list" |
michael@0 | 34 | ], |
michael@0 | 35 | "jsreftest_options": [ |
michael@0 | 36 | "--deviceIP=%(device_ip)s", |
michael@0 | 37 | "--xre-path=../hostutils/xre", |
michael@0 | 38 | "--utility-path=../hostutils/bin", |
michael@0 | 39 | "--app=%(app_name)s", |
michael@0 | 40 | "--enable-privilege", "--ignore-window-size", "--bootstrap", |
michael@0 | 41 | "--extra-profile-file=jsreftest/tests/user.js", "jsreftest/tests/jstests.list", |
michael@0 | 42 | "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", |
michael@0 | 43 | "--symbols-path=%(symbols_path)s" |
michael@0 | 44 | ], |
michael@0 | 45 | "robocop_options": [ |
michael@0 | 46 | "--deviceIP=%(device_ip)s", |
michael@0 | 47 | "--xre-path=../hostutils/xre", |
michael@0 | 48 | "--utility-path=../hostutils/bin", |
michael@0 | 49 | "--certificate-path=certs", |
michael@0 | 50 | "--app=%(app_name)s", "--console-level=INFO", |
michael@0 | 51 | "--http-port=%(http_port)s", "--ssl-port=%(ssl_port)s", |
michael@0 | 52 | "--symbols-path=%(symbols_path)s", |
michael@0 | 53 | "--robocop=mochitest/robocop.ini" |
michael@0 | 54 | ], |
michael@0 | 55 | "xpcshell_options": [ |
michael@0 | 56 | "--deviceIP=%(device_ip)s", |
michael@0 | 57 | "--xre-path=../hostutils/xre", |
michael@0 | 58 | "--manifest=xpcshell/tests/xpcshell_android.ini", |
michael@0 | 59 | "--build-info-json=xpcshell/mozinfo.json", |
michael@0 | 60 | "--testing-modules-dir=modules", |
michael@0 | 61 | "--local-lib-dir=../fennec", |
michael@0 | 62 | "--apk=../%(apk_name)s", |
michael@0 | 63 | "--no-logfiles", |
michael@0 | 64 | "--symbols-path=%(symbols_path)s" |
michael@0 | 65 | ], |
michael@0 | 66 | "jittest_options": [ |
michael@0 | 67 | "bin/js", |
michael@0 | 68 | "--remote", |
michael@0 | 69 | "-j", "1", |
michael@0 | 70 | "--deviceTransport=sut", |
michael@0 | 71 | "--deviceIP=%(device_ip)s", |
michael@0 | 72 | "--localLib=../tests/bin", |
michael@0 | 73 | "--no-slow", |
michael@0 | 74 | "--no-progress", |
michael@0 | 75 | "--tinderbox", |
michael@0 | 76 | "--tbpl" |
michael@0 | 77 | ], |
michael@0 | 78 | "cppunittest_options": [ |
michael@0 | 79 | "--symbols-path=%(symbols_path)s", |
michael@0 | 80 | "--xre-path=tests/bin", |
michael@0 | 81 | "--dm_trans=SUT", |
michael@0 | 82 | "--deviceIP=%(device_ip)s", |
michael@0 | 83 | "--localBinDir=../tests/bin", |
michael@0 | 84 | "--apk=%(apk_path)s", |
michael@0 | 85 | "--skip-manifest=../tests/cppunittests/android_cppunittest_manifest.txt" |
michael@0 | 86 | ], |
michael@0 | 87 | } |