| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 'wasm/*': [PASS, ['arch == arm64', SKIP]], | 311 'wasm/*': [PASS, ['arch == arm64', SKIP]], |
| 312 'wasm/asm-wasm': [PASS, ['arch == arm or arch == arm64', SKIP]], | 312 'wasm/asm-wasm': [PASS, ['arch == arm or arch == arm64', SKIP]], |
| 313 | 313 |
| 314 # TODO(branelson): Figure out why ignition + asm->wasm fails embenchen. | 314 # TODO(branelson): Figure out why ignition + asm->wasm fails embenchen. |
| 315 'wasm/embenchen/*': [PASS, ['ignition == True', SKIP]], | 315 'wasm/embenchen/*': [PASS, ['ignition == True', SKIP]], |
| 316 | 316 |
| 317 # TODO(bradnelson) Fix and re-enable. | 317 # TODO(bradnelson) Fix and re-enable. |
| 318 'wasm/embenchen/copy': [FAIL], # wrong answer | 318 'wasm/embenchen/copy': [FAIL], # wrong answer |
| 319 'wasm/embenchen/box2d': [SKIP], # hang | 319 'wasm/embenchen/box2d': [SKIP], # hang |
| 320 'wasm/embenchen/lua_binarytrees': [SKIP], # fails decode | 320 'wasm/embenchen/lua_binarytrees': [SKIP], # fails decode |
| 321 'wasm/embenchen/primes': [SKIP], # crashes under gc-stress | |
| 322 'wasm/embenchen/fannkuch': [SKIP], # crash (seems to be gc issue) | |
| 323 'wasm/embenchen/fasta': [SKIP], # flaky crash | |
| 324 'wasm/embenchen/zlib': [SKIP], # flaky crash | |
| 325 | 321 |
| 326 # case-insensitive unicode regexp relies on case mapping provided by ICU. | 322 # case-insensitive unicode regexp relies on case mapping provided by ICU. |
| 327 'harmony/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], | 323 'harmony/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], |
| 328 'harmony/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]]
, | 324 'harmony/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]]
, |
| 329 # desugaring regexp property class relies on ICU. | 325 # desugaring regexp property class relies on ICU. |
| 330 'harmony/unicode-regexp-property-class': [PASS, ['no_i18n == True', FAIL]], | 326 'harmony/unicode-regexp-property-class': [PASS, ['no_i18n == True', FAIL]], |
| 331 }], # ALWAYS | 327 }], # ALWAYS |
| 332 | 328 |
| 333 ['novfp3 == True', { | 329 ['novfp3 == True', { |
| 334 'asm/embenchen/box2d': [SKIP], | 330 'asm/embenchen/box2d': [SKIP], |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 # Tests taking too long. | 911 # Tests taking too long. |
| 916 'array-functions-prototype-misc': [SKIP], | 912 'array-functions-prototype-misc': [SKIP], |
| 917 'strong/implicit-conversions': [SKIP], | 913 'strong/implicit-conversions': [SKIP], |
| 918 'strong/load-element-mutate-backing-store': [SKIP], | 914 'strong/load-element-mutate-backing-store': [SKIP], |
| 919 | 915 |
| 920 # Stack overflow. | 916 # Stack overflow. |
| 921 'big-array-literal': [SKIP], | 917 'big-array-literal': [SKIP], |
| 922 }], # 'gcov_coverage' | 918 }], # 'gcov_coverage' |
| 923 | 919 |
| 924 ] | 920 ] |
| OLD | NEW |