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

Side by Side Diff: test/test262/test262.status

Issue 2112713003: Revert of Put RegExp js code in strict mode (patchset #2 id:20001 of https://codereview.chromium.or… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add more test262 failures Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « test/mjsunit/regexp-lastIndex.js ('k') | test/webkit/fast/regex/lastIndex-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 'language/asi/S7.9_A5.7_T1': [PASS, FAIL_OK], 104 'language/asi/S7.9_A5.7_T1': [PASS, FAIL_OK],
105 105
106 ###### BEGIN REGEXP SUBCLASSING SECTION ###### 106 ###### BEGIN REGEXP SUBCLASSING SECTION ######
107 # Times out 107 # Times out
108 'built-ins/RegExp/prototype/Symbol.match/coerce-global': [SKIP], 108 'built-ins/RegExp/prototype/Symbol.match/coerce-global': [SKIP],
109 109
110 # Sticky support busted 110 # Sticky support busted
111 'built-ins/RegExp/prototype/Symbol.replace/y-init-lastindex': [FAIL], 111 'built-ins/RegExp/prototype/Symbol.replace/y-init-lastindex': [FAIL],
112 'built-ins/RegExp/prototype/Symbol.replace/y-set-lastindex': [FAIL], 112 'built-ins/RegExp/prototype/Symbol.replace/y-set-lastindex': [FAIL],
113 113
114 # https://code.google.com/p/v8/issues/detail?id=4504
115 # https://bugs.chromium.org/p/chromium/issues/detail?id=624318
116 'built-ins/RegExp/prototype/Symbol.match/builtin-failure-set-lastindex-err': [ PASS, FAIL],
117 'built-ins/RegExp/prototype/Symbol.match/builtin-failure-y-set-lastindex-err': [PASS, FAIL],
118 'built-ins/RegExp/prototype/Symbol.match/builtin-success-g-set-lastindex-err': [SKIP],
119 'built-ins/RegExp/prototype/Symbol.match/builtin-success-y-set-lastindex-err': [PASS, FAIL],
120 'built-ins/RegExp/prototype/Symbol.match/g-init-lastindex-err': [PASS, FAIL],
121 'built-ins/RegExp/prototype/Symbol.match/g-match-empty-set-lastindex-err': [PA SS, FAIL],
122 'built-ins/RegExp/prototype/Symbol.match/y-fail-lastindex-no-write': [PASS, FA IL],
123 'built-ins/RegExp/prototype/Symbol.replace/g-init-lastindex-err': [PASS, FAIL] ,
124 'built-ins/RegExp/prototype/Symbol.replace/y-fail-lastindex-no-write': [PASS, FAIL],
125 'built-ins/RegExp/prototype/Symbol.search/set-lastindex-init-err': [PASS, FAIL ],
126 'built-ins/RegExp/prototype/Symbol.search/set-lastindex-restore-err': [PASS, F AIL],
127 'built-ins/RegExp/prototype/exec/y-fail-lastindex-no-write': [PASS, FAIL],
128 'built-ins/RegExp/prototype/test/y-fail-lastindex-no-write': [PASS, FAIL],
129
114 # SKIP rather than FAIL, as the test checks for an exception which 130 # SKIP rather than FAIL, as the test checks for an exception which
115 # happens to be thrown for some other reason. 131 # happens to be thrown for some other reason.
116 'built-ins/RegExp/prototype/Symbol.split/str-result-get-length-err': [SKIP], 132 'built-ins/RegExp/prototype/Symbol.split/str-result-get-length-err': [SKIP],
117 133
118 # https://bugs.chromium.org/p/v8/issues/detail?id=5123 134 # https://bugs.chromium.org/p/v8/issues/detail?id=5123
119 'built-ins/RegExp/prototype/Symbol.replace/coerce-global': [FAIL], 135 'built-ins/RegExp/prototype/Symbol.replace/coerce-global': [FAIL],
120 'built-ins/RegExp/prototype/Symbol.replace/coerce-unicode': [FAIL], 136 'built-ins/RegExp/prototype/Symbol.replace/coerce-unicode': [FAIL],
121 137
122 ###### END REGEXP SUBCLASSING SECTION ###### 138 ###### END REGEXP SUBCLASSING SECTION ######
123 139
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 }], # asan == True 633 }], # asan == True
618 634
619 ['asan == True or msan == True or tsan == True', { 635 ['asan == True or msan == True or tsan == True', {
620 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 636 # https://bugs.chromium.org/p/v8/issues/detail?id=4639
621 # The failed allocation causes an asan/msan/tsan error 637 # The failed allocation causes an asan/msan/tsan error
622 'built-ins/ArrayBuffer/allocation-limit': [SKIP], 638 'built-ins/ArrayBuffer/allocation-limit': [SKIP],
623 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], 639 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP],
624 }], # asan == True or msan == True or tsan == True 640 }], # asan == True or msan == True or tsan == True
625 641
626 ] 642 ]
OLDNEW
« no previous file with comments | « test/mjsunit/regexp-lastIndex.js ('k') | test/webkit/fast/regex/lastIndex-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698