mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
da2c0c3ea1
* We are unifying the in-tree mozharness configs to follow the same structure * We are moving run_filename into the tree * We are also staring the move to manage the testdir value which is already in use for Android test jobs --HG-- extra : rebase_source : 6d667cd50e54fe16edc5ddff5f29039c5ae82523
86 lines
2.8 KiB
Python
86 lines
2.8 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 = {
|
|
"suite_definitions": {
|
|
"cppunittest": {
|
|
"options": [
|
|
"--symbols-path=%(symbols_path)s",
|
|
"--xre-path=%(abs_app_dir)s"
|
|
],
|
|
"run_filename": "runcppunittests.py",
|
|
"testsdir": "cppunittests"
|
|
},
|
|
"jittest": {
|
|
"options": [
|
|
"tests/bin/js",
|
|
"--no-slow",
|
|
"--no-progress",
|
|
"--tinderbox",
|
|
"--tbpl"
|
|
],
|
|
"run_filename": "jit_test.py",
|
|
"testsdir": "jit-test/jit-test"
|
|
},
|
|
"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",
|
|
"--quiet",
|
|
"--log-raw=%(raw_log_file)s"
|
|
],
|
|
"run_filename": "runtests.py",
|
|
"testsdir": "mochitest"
|
|
},
|
|
"mozbase": {
|
|
"options": [
|
|
"-b",
|
|
"%(binary_path)s"
|
|
],
|
|
"run_filename": "test.py",
|
|
"testsdir": "mozbase"
|
|
},
|
|
"reftest": {
|
|
"options": [
|
|
"--appname=%(binary_path)s",
|
|
"--utility-path=tests/bin",
|
|
"--extra-profile-file=tests/bin/plugins",
|
|
"--symbols-path=%(symbols_path)s"
|
|
],
|
|
"run_filename": "runreftest.py",
|
|
"testsdir": "reftest"
|
|
},
|
|
"webapprt": {
|
|
"options": [
|
|
"--app=%(app_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",
|
|
"--testing-modules-dir=tests/modules",
|
|
"--quiet"
|
|
],
|
|
"run_filename": "runtests.py",
|
|
"testsdir": "mochitest"
|
|
},
|
|
"xpcshell": {
|
|
"options": [
|
|
"--symbols-path=%(symbols_path)s",
|
|
"--test-plugin-path=%(test_plugin_path)s",
|
|
"--log-raw=%(raw_log_file)s"
|
|
],
|
|
"run_filename": "runxpcshelltests.py",
|
|
"testsdir": "xpcshell"
|
|
}
|
|
}
|
|
} |