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