| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(titzer): correct WASM adapter frame alignment on arm64 | 287 # TODO(titzer): correct WASM adapter frame alignment on arm64 |
| 288 'wasm/*': [PASS, ['arch == arm64', SKIP]], | 288 'wasm/*': [PASS, ['arch == arm64', SKIP]], |
| 289 | 289 |
| 290 # TODO(titzer): SSE 4.1 required for asm-wasm test (floor). |
| 291 'wasm/asm-wasm': [SKIP], |
| 292 |
| 290 # case-insensitive unicode regexp relies on case mapping provided by ICU. | 293 # case-insensitive unicode regexp relies on case mapping provided by ICU. |
| 291 'harmony/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], | 294 'harmony/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], |
| 292 'harmony/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]]
, | 295 'harmony/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]]
, |
| 293 # desugaring regexp property class relies on ICU. | 296 # desugaring regexp property class relies on ICU. |
| 294 'harmony/unicode-regexp-property-class': [PASS, ['no_i18n == True', FAIL]], | 297 'harmony/unicode-regexp-property-class': [PASS, ['no_i18n == True', FAIL]], |
| 295 }], # ALWAYS | 298 }], # ALWAYS |
| 296 | 299 |
| 297 ['novfp3 == True', { | 300 ['novfp3 == True', { |
| 298 'asm/embenchen/box2d': [SKIP], | 301 'asm/embenchen/box2d': [SKIP], |
| 299 'asm/embenchen/zlib': [SKIP], | 302 'asm/embenchen/zlib': [SKIP], |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1021 # Tests taking too long. | 1024 # Tests taking too long. |
| 1022 'array-functions-prototype-misc': [SKIP], | 1025 'array-functions-prototype-misc': [SKIP], |
| 1023 'strong/implicit-conversions': [SKIP], | 1026 'strong/implicit-conversions': [SKIP], |
| 1024 'strong/load-element-mutate-backing-store': [SKIP], | 1027 'strong/load-element-mutate-backing-store': [SKIP], |
| 1025 | 1028 |
| 1026 # Stack overflow. | 1029 # Stack overflow. |
| 1027 'big-array-literal': [SKIP], | 1030 'big-array-literal': [SKIP], |
| 1028 }], # 'gcov_coverage' | 1031 }], # 'gcov_coverage' |
| 1029 | 1032 |
| 1030 ] | 1033 ] |
| OLD | NEW |