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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 # work. | 206 # work. |
207 'wasm/jit-single-function' : [SKIP], | 207 'wasm/jit-single-function' : [SKIP], |
208 | 208 |
209 # case-insensitive unicode regexp relies on case mapping provided by ICU. | 209 # case-insensitive unicode regexp relies on case mapping provided by ICU. |
210 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], | 210 'es6/unicode-regexp-ignore-case': [PASS, ['no_i18n == True', FAIL]], |
211 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], | 211 'es6/unicode-regexp-ignore-case-noi18n': [FAIL, ['no_i18n == True', PASS]], |
212 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], | 212 'regress/regress-5036': [PASS, ['no_i18n == True', FAIL]], |
213 # desugaring regexp property class relies on ICU. | 213 # desugaring regexp property class relies on ICU. |
214 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], | 214 'harmony/regexp-property-*': [PASS, ['no_i18n == True', FAIL]], |
215 | 215 |
| 216 # TODO(caitp): Fail without i18n support. |
| 217 'es7/regress/regress-634357': [PASS, ['no_i18n', SKIP]], |
| 218 |
216 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). | 219 # TODO(bmeurer): Flaky timeouts (sometimes <1s, sometimes >3m). |
217 'unicodelctest': [PASS, NO_VARIANTS], | 220 'unicodelctest': [PASS, NO_VARIANTS], |
218 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], | 221 'unicodelctest-no-optimization': [PASS, NO_VARIANTS], |
219 | 222 |
220 ############################################################################ | 223 ############################################################################ |
221 # Ignition | 224 # Ignition |
222 | 225 |
223 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. | 226 # TODO(mythria, 4780): Related to type feedback for calls in interpreter. |
224 'array-literal-feedback': [PASS, NO_IGNITION], | 227 'array-literal-feedback': [PASS, NO_IGNITION], |
225 'regress/regress-4121': [PASS, NO_IGNITION], | 228 'regress/regress-4121': [PASS, NO_IGNITION], |
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 ############################################################################## | 760 ############################################################################## |
758 ['gcov_coverage', { | 761 ['gcov_coverage', { |
759 # Tests taking too long. | 762 # Tests taking too long. |
760 'array-functions-prototype-misc': [SKIP], | 763 'array-functions-prototype-misc': [SKIP], |
761 | 764 |
762 # Stack overflow. | 765 # Stack overflow. |
763 'big-array-literal': [SKIP], | 766 'big-array-literal': [SKIP], |
764 }], # 'gcov_coverage' | 767 }], # 'gcov_coverage' |
765 | 768 |
766 ] | 769 ] |
OLD | NEW |