OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 # Sticky support busted | 118 # Sticky support busted |
119 'built-ins/RegExp/prototype/Symbol.replace/y-init-lastindex': [FAIL], | 119 'built-ins/RegExp/prototype/Symbol.replace/y-init-lastindex': [FAIL], |
120 'built-ins/RegExp/prototype/Symbol.replace/y-set-lastindex': [FAIL], | 120 'built-ins/RegExp/prototype/Symbol.replace/y-set-lastindex': [FAIL], |
121 | 121 |
122 # SKIP rather than FAIL, as the test checks for an exception which | 122 # SKIP rather than FAIL, as the test checks for an exception which |
123 # happens to be thrown for some other reason. | 123 # happens to be thrown for some other reason. |
124 'built-ins/RegExp/prototype/Symbol.split/str-result-get-length-err': [SKIP], | 124 'built-ins/RegExp/prototype/Symbol.split/str-result-get-length-err': [SKIP], |
125 | 125 |
126 # Spec change in progress: https://github.com/tc39/ecma262/issues/489 | 126 # Spec change in progress: https://github.com/tc39/ecma262/issues/489 |
127 'built-ins/RegExp/prototype/Symbol.replace/get-sticky-err': [SKIP], | 127 'built-ins/RegExp/prototype/Symbol.replace/get-sticky-err': [SKIP], |
128 | |
129 # Skip everything that will fail without the --harmony-regexp-exec flag. | |
130 # These lines should be removed when that flag is staged. | |
131 'built-ins/RegExp/prototype/Symbol.match/*': [SKIP], | |
132 'built-ins/RegExp/prototype/Symbol.replace/*': [SKIP], | |
133 'built-ins/RegExp/prototype/Symbol.search/*': [SKIP], | |
134 'built-ins/RegExp/prototype/Symbol.split/*': [SKIP], | |
135 'built-ins/RegExp/prototype/exec/get-sticky-err': [SKIP], | |
136 'built-ins/RegExp/prototype/test/get-sticky-err': [SKIP], | |
137 # | 128 # |
138 ###### END REGEXP SUBCLASSING SECTION ###### | 129 ###### END REGEXP SUBCLASSING SECTION ###### |
139 | 130 |
140 # https://code.google.com/p/v8/issues/detail?id=4360 | 131 # https://code.google.com/p/v8/issues/detail?id=4360 |
141 'intl402/Collator/10.1.1_1': [FAIL], | 132 'intl402/Collator/10.1.1_1': [FAIL], |
142 'intl402/DateTimeFormat/12.1.1_1': [FAIL], | 133 'intl402/DateTimeFormat/12.1.1_1': [FAIL], |
143 'intl402/NumberFormat/11.1.1_1': [FAIL], | 134 'intl402/NumberFormat/11.1.1_1': [FAIL], |
144 | 135 |
145 # https://code.google.com/p/v8/issues/detail?id=4476 | 136 # https://code.google.com/p/v8/issues/detail?id=4476 |
146 'built-ins/String/prototype/toLocaleLowerCase/special_casing_conditional': [FA
IL], | 137 'built-ins/String/prototype/toLocaleLowerCase/special_casing_conditional': [FA
IL], |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], | 337 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], |
347 }], # asan == True | 338 }], # asan == True |
348 | 339 |
349 ['asan == True or msan == True or tsan == True', { | 340 ['asan == True or msan == True or tsan == True', { |
350 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 | 341 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 |
351 # The failed allocation causes an asan/msan/tsan error | 342 # The failed allocation causes an asan/msan/tsan error |
352 'built-ins/ArrayBuffer/allocation-limit': [SKIP], | 343 'built-ins/ArrayBuffer/allocation-limit': [SKIP], |
353 }], # asan == True or msan == True or tsan == True | 344 }], # asan == True or msan == True or tsan == True |
354 | 345 |
355 ] | 346 ] |
OLD | NEW |