1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
[DEFAULT]
firefox-appdir = "browser"
head = "head_searchconfig.js"
dupe-manifest = ""
support-files = ["../../../../../../browser/locales/all-locales"]
tags = "searchconfig remote-settings"
# These are extensive tests, we don't need to run them on asan/tsan.
# They are also skipped for mobile and Thunderbird as these are specifically
# testing the Firefox config at the moment.
skip-if = [
"os == 'android'",
"appname == 'thunderbird'",
"asan",
"tsan",
"debug",
"os == 'win' && ccov",
]
# These tests do take a little longer on Linux ccov, so allow that here.
requesttimeoutfactor = 2
["test_amazon.js"]
["test_baidu.js"]
["test_bing.js"]
["test_distributions.js"]
["test_duckduckgo.js"]
["test_ebay.js"]
["test_ecosia.js"]
["test_google.js"]
["test_mailru.js"]
["test_qwant.js"]
["test_rakuten.js"]
["test_searchconfig_ui_schemas_valid.js"]
support-files = [
"../../../schema/search-config-icons-schema.json",
"../../../schema/search-config-icons-ui-schema.json",
"../../../schema/search-config-overrides-schema.json",
"../../../schema/search-config-overrides-ui-schema.json",
"../../../schema/search-config-overrides-v2-schema.json",
"../../../schema/search-config-overrides-v2-ui-schema.json",
"../../../schema/search-config-schema.json",
"../../../schema/search-config-ui-schema.json",
"../../../schema/search-config-v2-schema.json",
"../../../schema/search-config-v2-ui-schema.json",
"../../../schema/search-default-override-allowlist-schema.json",
"../../../schema/search-default-override-allowlist-ui-schema.json",
]
["test_searchconfig_validates.js"]
support-files = [
"../../../schema/search-config-icons-schema.json",
"../../../schema/search-config-overrides-schema.json",
"../../../schema/search-config-overrides-v2-schema.json",
"../../../schema/search-config-schema.json",
"../../../schema/search-config-v2-schema.json",
"../../../schema/search-default-override-allowlist-schema.json",
]
["test_selector_db_out_of_date.js"]
["test_wikipedia.js"]
["test_yahoojp.js"]
["test_yandex.js"]
|