OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 'copy-on-write-assert': [PASS, SLOW], | 277 'copy-on-write-assert': [PASS, SLOW], |
278 'debug-scopes': [PASS, SLOW], | 278 'debug-scopes': [PASS, SLOW], |
279 'es7/object-observe': [PASS, ['mode == debug', SLOW]], | 279 'es7/object-observe': [PASS, ['mode == debug', SLOW]], |
280 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], | 280 'numops-fuzz-part*': [PASS, ['mode == debug', SLOW]], |
281 'readonly': [PASS, SLOW], | 281 'readonly': [PASS, SLOW], |
282 'regress/regress-1200351': [PASS, ['mode == debug', SLOW]], | 282 'regress/regress-1200351': [PASS, ['mode == debug', SLOW]], |
283 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], | 283 'regress/regress-crbug-474297': [PASS, ['mode == debug', SLOW]], |
284 'strong/implicit-conversions': [PASS, SLOW], | 284 'strong/implicit-conversions': [PASS, SLOW], |
285 'strong/load-element-mutate-backing-store': [PASS, SLOW], | 285 'strong/load-element-mutate-backing-store': [PASS, SLOW], |
286 | 286 |
287 # TODO(bradnelson): Enable tests in a separate change. | 287 # TODO(titzer): correct WASM adapter frame alignment on arm64 |
288 'wasm/*': [SKIP], | 288 'wasm/*': [PASS, ['arch == arm64', SKIP]], |
289 }], # ALWAYS | 289 }], # ALWAYS |
290 | 290 |
291 ['novfp3 == True', { | 291 ['novfp3 == True', { |
292 'asm/embenchen/box2d': [SKIP], | 292 'asm/embenchen/box2d': [SKIP], |
293 'asm/embenchen/zlib': [SKIP], | 293 'asm/embenchen/zlib': [SKIP], |
294 'asm/embenchen/memops': [SKIP], | 294 'asm/embenchen/memops': [SKIP], |
295 'asm/embenchen/lua_binarytrees': [SKIP], | 295 'asm/embenchen/lua_binarytrees': [SKIP], |
296 }], # novfp3 == True | 296 }], # novfp3 == True |
297 | 297 |
298 ############################################################################## | 298 ############################################################################## |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 # Tests too slow for no18n debug. | 369 # Tests too slow for no18n debug. |
370 'regress/regress-1200351': [SKIP], | 370 'regress/regress-1200351': [SKIP], |
371 }], # 'no_i18n == True and mode == debug' | 371 }], # 'no_i18n == True and mode == debug' |
372 | 372 |
373 ############################################################################## | 373 ############################################################################## |
374 ['byteorder == big', { | 374 ['byteorder == big', { |
375 # Emscripten requires little-endian, skip all tests on big endian platforms. | 375 # Emscripten requires little-endian, skip all tests on big endian platforms. |
376 'asm/embenchen/*': [SKIP], | 376 'asm/embenchen/*': [SKIP], |
377 'asm/poppler/*': [SKIP], | 377 'asm/poppler/*': [SKIP], |
378 'asm/sqlite3/*': [SKIP], | 378 'asm/sqlite3/*': [SKIP], |
| 379 # TODO(mips-team): Fix Wasm for big-endian. |
| 380 'wasm/*': [SKIP], |
379 }], # 'byteorder == big' | 381 }], # 'byteorder == big' |
380 | 382 |
381 ############################################################################## | 383 ############################################################################## |
382 ['arch == arm64 or arch == android_arm64', { | 384 ['arch == arm64 or arch == android_arm64', { |
383 | 385 |
384 # arm64 TF timeout. | 386 # arm64 TF timeout. |
385 'regress/regress-1257': [PASS, TIMEOUT], | 387 'regress/regress-1257': [PASS, TIMEOUT], |
386 | 388 |
387 # Requires bigger stack size in the Genesis and if stack size is increased, | 389 # Requires bigger stack size in the Genesis and if stack size is increased, |
388 # the test requires too much time to run. However, the problem test covers | 390 # the test requires too much time to run. However, the problem test covers |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1116 | 1118 |
1117 ############################################################################## | 1119 ############################################################################## |
1118 ['gcov_coverage', { | 1120 ['gcov_coverage', { |
1119 # Tests taking too long. | 1121 # Tests taking too long. |
1120 'array-functions-prototype-misc': [SKIP], | 1122 'array-functions-prototype-misc': [SKIP], |
1121 'strong/implicit-conversions': [SKIP], | 1123 'strong/implicit-conversions': [SKIP], |
1122 'strong/load-element-mutate-backing-store': [SKIP], | 1124 'strong/load-element-mutate-backing-store': [SKIP], |
1123 }], # 'gcov_coverage' | 1125 }], # 'gcov_coverage' |
1124 | 1126 |
1125 ] | 1127 ] |
OLD | NEW |