mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 20:47:44 +00:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||
|
|
||
|
config = {
|
||
|
"reftest_options": [
|
||
|
"--appname=%(binary_path)s", "--utility-path=tests/bin",
|
||
|
"--extra-profile-file=tests/bin/plugins", "--symbols-path=%(symbols_path)s"
|
||
|
],
|
||
|
"mochitest_options": [
|
||
|
"--appname=%(binary_path)s", "--utility-path=tests/bin",
|
||
|
"--extra-profile-file=tests/bin/plugins", "--symbols-path=%(symbols_path)s",
|
||
|
"--certificate-path=tests/certs", "--autorun", "--close-when-done",
|
||
|
"--console-level=INFO"
|
||
|
],
|
||
|
"xpcshell_options": [
|
||
|
"--symbols-path=%(symbols_path)s",
|
||
|
"--test-plugin-path=%(test_plugin_path)s"
|
||
|
],
|
||
|
"cppunittest_options": [
|
||
|
"--symbols-path=%(symbols_path)s",
|
||
|
"--xre-path=%(abs_app_dir)s"
|
||
|
],
|
||
|
"jittest_options": [
|
||
|
"tests/bin/js",
|
||
|
"--no-slow",
|
||
|
"--no-progress",
|
||
|
"--tinderbox",
|
||
|
"--tbpl"
|
||
|
],
|
||
|
"mozbase_options": [
|
||
|
"-b", "%(binary_path)s"
|
||
|
],
|
||
|
}
|