mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
88 lines
2.8 KiB
Python
88 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"
|
|
}
|
|
},
|
|
"mac_res_subdir": "MacOS"
|
|
}
|