-
Notifications
You must be signed in to change notification settings - Fork 14
/
test-configuration.properties
276 lines (240 loc) · 11.8 KB
/
test-configuration.properties
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#
# Copyright (c) André Bargull
# Alle Rechte vorbehalten / All Rights Reserved. Use is subject to license terms.
#
# <https://github.com/anba/es6draft>
#
# test suite configuration for 'script.test'
script.test = src/test/scripts/suite
script.test.stage = Strawman
script.test.features = CallConstructor
script.test.scripts = lib/assert.js
script.test.exclude.dirs = lib, resources
script.test.include = **/*.js, **/*.jsm
# test suite configuration for 'script.strict'
script.strict = src/test/scripts/strict
script.strict.mode = strict-compatibility
script.strict.scripts = ../suite/lib/assert.js
script.strict.exclude.dirs = resources
script.strict.include = **/*.js, **/*.jsm
# test suite configuration for 'script.node'
script.node = src/test/scripts/node
script.node.scripts = ../suite/lib/assert.js
script.node.exclude.dirs = lib, resources
# test suite configuration for 'script.262'
script.262 = src/test/scripts/suite262
script.262.stage = Candidate
script.262.harness = src/test/scripts/test262, ${test262.path}/harness
script.262.scripts = resource:/scripts/test262/SimpleTestAPI.js, ${test262.path}/harness/assert.js
script.262.include = **/*.js
# test suite configuration for 'compiler.test'
compiler.test = src/test/scripts/compiler
compiler.test.stage = Strawman
compiler.test.features = Comprehension, ReflectParse, OldDecorator
# test suite configuration for 'promise.test.unwrapping'
promise.test.unwrapping = src/test/scripts/promise/unwrapping
promise.test.unwrapping.scripts = ../builtins/require.js, ../builtins/setup-unwrapping.js
# test suite configuration for 'promise_aplus.test'
promise.test.aplus = src/test/scripts/promise/aplus
promise.test.aplus.scripts = ../builtins/require.js, ../builtins/setup-aplus.js
promise.test.aplus.exclude.dirs = helpers
# test suite configuration for 'promise_aplus.test'
promise.test.rejection = src/test/scripts/promise/rejection
promise.test.rejection.features = PromiseRejection
promise.test.rejection.scripts = ../builtins/setup-rejection.js
# test suite configuration for 'natives.test.default'
natives.test.default = src/test/scripts/natives
natives.test.default.features = Realm
natives.test.default.scripts = lib/assert.js
natives.test.default.exclude.dirs = lib
# test suite configuration for 'natives.test.mozilla'
natives.test.mozilla = src/test/scripts/natives
natives.test.mozilla.mode = moz-compatibility
natives.test.mozilla.features = Realm
natives.test.mozilla.scripts = lib/assert.js
natives.test.mozilla.exclude.dirs = lib
# test suite configuration for 'natives.test.v8'
natives.test.v8 = src/test/scripts/natives
natives.test.v8.features = Realm
natives.test.v8.scripts = lib/assert.js
natives.test.v8.exclude.dirs = lib
# [[ test262 tests ]]
test262.path = ${env:TEST262_PATH}
# strict, non_strict or both
test262.unmarked_default = both
# Enable all stage 3 features by default for test262.
test262.stage = Candidate
# No additional features are enabled.
test262.features =
# Test harness search paths.
test262.harness = src/test/scripts/test262, ${test262.path}/harness
# Harness files loaded in all js-contexts for test262.
test262.scripts = resource:/scripts/test262/SimpleTestAPI.js, harness/assert.js
# Files matching these patterns will be executed.
test262.include = test/**/*.js
test262.include.dirs =
test262.include.files =
# Files matching these patterns won't be executed.
test262.exclude = regex:^.*_(?:FIXTURE)?\.js$
test262.exclude.dirs =
test262.exclude.files =
# Test262 feature tag, see features.txt in test262.
test262.include.features =
test262.exclude.features = CannotSuspendMainAgent
# test suite configuration for 'test262.test.web'
test262.test.web = ${test262.path}
test262.test.web.mode = web-compatibility
test262.test.web.stage = ${test262.stage}
test262.test.web.features = ${test262.features}
test262.test.web.harness = ${test262.harness}
test262.test.web.scripts = ${test262.scripts}
test262.test.web.include = ${test262.include}
test262.test.web.include.dirs = ${test262.include.dirs}
test262.test.web.include.files = ${test262.include.files}
test262.test.web.include.features = ${test262.include.features}
test262.test.web.exclude = ${test262.exclude}
test262.test.web.exclude.dirs = ${test262.exclude.dirs}
test262.test.web.exclude.files = ${test262.exclude.files}
test262.test.web.exclude.features = ${test262.exclude.features}
test262.test.web.exclude.list = resource:/test262.list
test262.test.web.unmarked_default = ${test262.unmarked_default}
# test suite configuration for 'test262.test.strict'
test262.test.strict = ${test262.path}
test262.test.strict.mode = strict-compatibility
test262.test.strict.stage = ${test262.stage}
test262.test.strict.features = ${test262.features}
test262.test.strict.harness = ${test262.harness}
test262.test.strict.scripts = ${test262.scripts}
test262.test.strict.include = ${test262.include}
test262.test.strict.include.dirs = ${test262.include.dirs}
test262.test.strict.include.files = ${test262.include.files}
test262.test.strict.include.features = ${test262.include.features}
test262.test.strict.exclude = ${test262.exclude}
test262.test.strict.exclude.dirs = annexB
test262.test.strict.exclude.files = ${test262.exclude.files}
test262.test.strict.exclude.features = caller, CannotSuspendMainAgent
test262.test.strict.exclude.list = resource:/test262.list, resource:/test262-strict.list
test262.test.strict.unmarked_default = ${test262.unmarked_default}
# [[ test262-parser tests ]]
test262-parser = ${env:TEST262_PARSER_PATH}
test262-parser.mode = web-compatibility
test262-parser.stage = Candidate
test262-parser.include.dirs = early, fail, pass, pass-explicit
test262-parser.exclude.list = resource:/test262-parser.list
# [[ mozilla tests ]]
mozilla.path = ${env:MOZILLA_PATH}
mozilla.skip = false
mozilla.mode = moz-compatibility
mozilla.features =
# test suite configuration for 'mozilla.test.jittests'
mozilla.test.jittests = ${mozilla.path}/js/src/jit-test
mozilla.test.jittests.skip = ${mozilla.skip}
mozilla.test.jittests.mode = ${mozilla.mode}
mozilla.test.jittests.features = ${mozilla.features}
mozilla.test.jittests.scripts = lib/prologue.js
mozilla.test.jittests.include = tests/**/*.js, tests/*.js
mozilla.test.jittests.exclude.dirs = asm.js, coverage, baseline, debug, gc, heap-analysis, ion, jaeger,\
latin1, profiler, saved-stacks, self-test, SIMD,\
structured-clone, sunspider, tracelogger, truthiness, TypedObject,\
v8-v5, wasm, xdr
mozilla.test.jittests.exclude.list = resource:/jittests.list
mozilla.test.jittests.flags.ignore = allow-oom, allow-unhandlable-oom, allow-overrecursed, valgrind, tz-pacific,\
exitstatus, test-also-noasmjs, test-also-wasm-baseline, test-join,\
--dump-bytecode, --fuzzing-safe, --no-threads, --no-ion, --no-baseline,\
--ion-eager, --baseline-eager, need-for-each, --ion-shared-stubs, --ion-gvn
mozilla.test.jittests.flags.disable = slow, debug
mozilla.test.jittests.flags.warn = true
# test suite configuration for 'mozilla.test.jstests'
mozilla.test.jstests = ${mozilla.path}/js/src/tests
mozilla.test.jstests.skip = ${mozilla.skip}
mozilla.test.jstests.mode = ${mozilla.mode}
mozilla.test.jstests.features = ${mozilla.features}
mozilla.test.jstests.exclude.files = browser.js, shell.js, jsref.js, template.js, user.js,\
js-test-driver-begin.js, js-test-driver-end.js,\
test262-host.js
mozilla.test.jstests.exclude.dirs = shell, supporting, test, test262, TypedObject
mozilla.test.jstests.exclude.list = resource:/jstests.list
mozilla.test.jstests.flags.ignore = silentfail
mozilla.test.jstests.flags.disable = slow, skip, random
mozilla.test.jstests.flags.warn = true
# [[ v8 tests ]]
v8.path = ${env:V8_PATH}
v8.skip = false
v8.features = DoExpression, FunctionSent, StringTrim, Realm,\
RegExpLookBehind, RegExpNamedCapture, RegExpUnicodeProperties,\
ObjectRestSpreadProperties, AsyncIteration, PromiseFinally, FunctionToString,\
RegExpDotAll, DynamicImport, PluralRules, BigInt, ClassFields, ImportMeta
# test suite configuration for 'v8.test.intl'
v8.test.intl = ${v8.path}/test/intl
v8.test.intl.skip = ${v8.skip}
v8.test.intl.features = ${v8.features}
v8.test.intl.scripts = assert.js, utils.js
v8.test.intl.exclude.files = assert.js, utils.js, regexp-prepare.js, regexp-assert.js
v8.test.intl.exclude.dirs = break-iterator
v8.test.intl.exclude.list = resource:/intl.list
# test suite configuration for 'v8.test.mjsunit'
v8.test.mjsunit = ${v8.path}/test/mjsunit
v8.test.mjsunit.skip = ${v8.skip}
v8.test.mjsunit.features = ${v8.features}
v8.test.mjsunit.scripts = resource:/scripts/v8/env.js, mjsunit.js
v8.test.mjsunit.exclude = modules-skip*.js, **/modules-skip*.js
v8.test.mjsunit.exclude.files = mjsunit.js
v8.test.mjsunit.exclude.dirs = asm, bugs, lithium, runtime-gen, strong, tools, wasm
v8.test.mjsunit.exclude.list = resource:/mjsunit.list
v8.test.mjsunit.flags.disable = --expose-debug-as, --expose-natives-as, --expose-externalize-string, --lazy,\
--expose-trigger-failure, --mock-arraybuffer-allocator, --expose-wasm, --throws,\
--promise-extra, --no-harmony-regexp-property
# test suite configuration for 'v8.test.webkit'
v8.test.webkit = ${v8.path}/test/webkit
v8.test.webkit.skip = ${v8.skip}
v8.test.webkit.features = ${v8.features}
v8.test.webkit.exclude.dirs = resources
v8.test.webkit.exclude.list = resource:/v8_webkit.list
# [[ webkit tests]]
webkit.path = ${env:WEBKIT_PATH}
webkit.skip = false
webkit.features = StringTrim, DynamicImport, ObjectRestSpreadProperties,\
RegExpDotAll, RegExpNamedCapture, RegExpUnicodeProperties, ImportMeta, AsyncIteration,\
OptionalCatchBinding, PromiseFinally
# test suite configuration for 'webkit.test'
webkit.test = ${webkit.path}/LayoutTests
webkit.test.skip = ${webkit.skip}
webkit.test.features = ${webkit.features}
webkit.test.include = js/kde/script-tests/*.js, js/script-tests/*.js
webkit.test.exclude.list = resource:/webkit.list
# test suite configuration for 'webkit.es6.test'
webkit.es6.test = ${webkit.path}/JSTests/es6
webkit.es6.test.skip = ${webkit.skip}
webkit.es6.test.features = ${webkit.features}
webkit.es6.test.scripts = resource:/scripts/webkit/env-es6.js
webkit.es6.test.exclude.list = resource:/webkit-es6.list
# test suite configuration for 'webkit.stress.test'
webkit.stress.test = ${webkit.path}/JSTests/stress
webkit.stress.test.skip = ${webkit.skip}
webkit.stress.test.features = ${webkit.features}
webkit.stress.test.scripts = resource:/scripts/webkit/env-stress.js
webkit.stress.test.include = *.js
webkit.stress.test.exclude.list = resource:/webkit-stress.list
# test suite configuration for 'webkit.modules.test'
webkit.modules.test = ${webkit.path}/JSTests/modules
webkit.modules.test.skip = ${webkit.skip}
webkit.modules.test.features = ${webkit.features}
webkit.modules.test.modules = resource:/scripts/webkit/modules-assert.js=./resources/assert.js
webkit.modules.test.include = *.js
webkit.modules.test.exclude.list = resource:/webkit-modules.list
# [[ chakra tests ]]
chakra.path = ${env:CHAKRA_PATH}
chakra.skip = false
chakra.features = StringTrim, DynamicImport
# test suite configuration for 'chakra.test'
chakra.test = ${chakra.path}/test
chakra.test.skip = ${chakra.skip}
chakra.test.features = ${chakra.features}
chakra.test.scripts = resource:/scripts/chakra/env.js
chakra.test.include = **/*.js
chakra.test.exclude.dirs = AsmJs, AsmJSFloat, ASMJSParser, benchmarks, Debugger, module, rltimeout,\
StackTrace, TTBasic, TTExecuteBasic, VT_DATE, DebuggerCommon, wasm, WasmSpec,\
JsBuiltIns
chakra.test.exclude.list = resource:/chakra.list
chakra.test.flags.ignore =
chakra.test.flags.disable = -verbose, -dump, -trace, -testtrace, -testTrace