Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(646)

Unified Diff: test/test262/test262.status

Issue 1836123002: Add fast paths for native RegExps in ES2015 subclass-aware code (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Less zealous inlining Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/js/regexp.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/test262/test262.status
diff --git a/test/test262/test262.status b/test/test262/test262.status
index ec958493003a408dfb7197fe9f96271f1b6878c0..66c6df48d024fbd284cc563364129c351b16def1 100644
--- a/test/test262/test262.status
+++ b/test/test262/test262.status
@@ -99,25 +99,43 @@
# https://code.google.com/p/v8/issues/detail?id=4253
'language/asi/S7.9_A5.7_T1': [PASS, FAIL_OK],
- # https://code.google.com/p/v8/issues/detail?id=4602
+ ###### BEGIN REGEXP SUBCLASSING SECTION ######
+ # https://code.google.com/p/v8/issues/detail?id=4602
+ # Fails due to mismatching [[OriginalFlags]] and getters
'built-ins/RegExp/prototype/exec/get-sticky-coerce': [FAIL],
- 'built-ins/RegExp/prototype/exec/get-sticky-err': [FAIL],
- 'built-ins/RegExp/prototype/test/get-sticky-err': [FAIL],
+ 'built-ins/RegExp/prototype/Symbol.match/coerce-sticky': [FAIL],
+ 'built-ins/RegExp/prototype/Symbol.replace/get-sticky-coerce': [FAIL],
+ 'built-ins/RegExp/prototype/Symbol.replace/coerce-global': [FAIL],
+ 'built-ins/RegExp/prototype/Symbol.replace/coerce-unicode': [FAIL],
+ 'built-ins/RegExp/prototype/Symbol.search/get-sticky-coerce': [FAIL],
- # https://code.google.com/p/v8/issues/detail?id=4305
- # SKIP rather than FAIL some tests, as they may check for an exception which
- # happens to be thrown for some other reason (e.g,
- # built-ins/RegExp/prototype/Symbol.match/builtin-failure-set-lastindex-err)
- 'built-ins/RegExp/prototype/Symbol.match/*': [SKIP],
+ # Missing lastIndex support
+ 'built-ins/RegExp/prototype/Symbol.split/str-result-coerce-length-err': [FAIL],
- # https://code.google.com/p/v8/issues/detail?id=4343
- 'built-ins/RegExp/prototype/Symbol.replace/*': [SKIP],
+ # Times out
+ 'built-ins/RegExp/prototype/Symbol.split/str-coerce-lastindex': [SKIP],
- # https://code.google.com/p/v8/issues/detail?id=4344
- 'built-ins/RegExp/prototype/Symbol.search/*': [SKIP],
+ # Sticky support busted
+ 'built-ins/RegExp/prototype/Symbol.replace/y-init-lastindex': [FAIL],
+ 'built-ins/RegExp/prototype/Symbol.replace/y-set-lastindex': [FAIL],
+
+ # SKIP rather than FAIL, as the test checks for an exception which
+ # happens to be thrown for some other reason.
+ 'built-ins/RegExp/prototype/Symbol.split/str-result-get-length-err': [SKIP],
- # https://code.google.com/p/v8/issues/detail?id=4345
+ # Spec change in progress: https://github.com/tc39/ecma262/issues/489
+ 'built-ins/RegExp/prototype/Symbol.replace/get-sticky-err': [SKIP],
+
+ # Skip everything that will fail without the --harmony-regexp-exec flag.
+ # These lines should be removed when that flag is staged.
+ 'built-ins/RegExp/prototype/Symbol.match/*': [SKIP],
+ 'built-ins/RegExp/prototype/Symbol.replace/*': [SKIP],
+ 'built-ins/RegExp/prototype/Symbol.search/*': [SKIP],
'built-ins/RegExp/prototype/Symbol.split/*': [SKIP],
+ 'built-ins/RegExp/prototype/exec/get-sticky-err': [SKIP],
+ 'built-ins/RegExp/prototype/test/get-sticky-err': [SKIP],
+ #
+ ###### END REGEXP SUBCLASSING SECTION ######
# https://code.google.com/p/v8/issues/detail?id=4360
'intl402/Collator/10.1.1_1': [FAIL],
« no previous file with comments | « src/js/regexp.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698