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

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

Issue 1639343005: [generators] Implement Generator.prototype.return. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@yield-star
Patch Set: Another rebase Created 4 years, 10 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/harmony/generators.js ('k') | no next file » | 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 'built-ins/Array/prototype/Symbol.iterator': [FAIL], 142 'built-ins/Array/prototype/Symbol.iterator': [FAIL],
143 'built-ins/Array/prototype/values/returns-iterator': [FAIL], 143 'built-ins/Array/prototype/values/returns-iterator': [FAIL],
144 'built-ins/Array/prototype/values/returns-iterator-from-object': [FAIL], 144 'built-ins/Array/prototype/values/returns-iterator-from-object': [FAIL],
145 'built-ins/Array/prototype/values/prop-desc': [FAIL], 145 'built-ins/Array/prototype/values/prop-desc': [FAIL],
146 'built-ins/Array/prototype/values/name': [FAIL], 146 'built-ins/Array/prototype/values/name': [FAIL],
147 'built-ins/Array/prototype/values/length': [FAIL], 147 'built-ins/Array/prototype/values/length': [FAIL],
148 'built-ins/Array/prototype/values/iteration': [FAIL], 148 'built-ins/Array/prototype/values/iteration': [FAIL],
149 'built-ins/Array/prototype/values/iteration-mutable': [FAIL], 149 'built-ins/Array/prototype/values/iteration-mutable': [FAIL],
150 'built-ins/Array/prototype/Symbol.unscopables/value': [FAIL], 150 'built-ins/Array/prototype/Symbol.unscopables/value': [FAIL],
151 151
152 # https://code.google.com/p/v8/issues/detail?id=3566
153 'built-ins/GeneratorPrototype/return/*': [SKIP],
154
155 # https://code.google.com/p/v8/issues/detail?id=4248 152 # https://code.google.com/p/v8/issues/detail?id=4248
156 'language/expressions/compound-assignment/S11.13.2_A5.*': [FAIL], 153 'language/expressions/compound-assignment/S11.13.2_A5.*': [FAIL],
157 'language/expressions/compound-assignment/S11.13.2_A6.*': [FAIL], 154 'language/expressions/compound-assignment/S11.13.2_A6.*': [FAIL],
158 'language/expressions/compound-assignment/S11.13.2_A7.10_T4': [FAIL], 155 'language/expressions/compound-assignment/S11.13.2_A7.10_T4': [FAIL],
159 'language/expressions/compound-assignment/S11.13.2_A7.11_T4': [FAIL], 156 'language/expressions/compound-assignment/S11.13.2_A7.11_T4': [FAIL],
160 'language/expressions/compound-assignment/S11.13.2_A7.1_T4': [FAIL], 157 'language/expressions/compound-assignment/S11.13.2_A7.1_T4': [FAIL],
161 'language/expressions/compound-assignment/S11.13.2_A7.2_T4': [FAIL], 158 'language/expressions/compound-assignment/S11.13.2_A7.2_T4': [FAIL],
162 'language/expressions/compound-assignment/S11.13.2_A7.3_T4': [FAIL], 159 'language/expressions/compound-assignment/S11.13.2_A7.3_T4': [FAIL],
163 'language/expressions/compound-assignment/S11.13.2_A7.4_T4': [FAIL], 160 'language/expressions/compound-assignment/S11.13.2_A7.4_T4': [FAIL],
164 'language/expressions/compound-assignment/S11.13.2_A7.5_T4': [FAIL], 161 'language/expressions/compound-assignment/S11.13.2_A7.5_T4': [FAIL],
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 'built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2': [SKIP], 677 'built-ins/decodeURIComponent/S15.1.3.2_A1.12_T2': [SKIP],
681 'built-ins/decodeURIComponent/S15.1.3.2_A1.12_T3': [SKIP], 678 'built-ins/decodeURIComponent/S15.1.3.2_A1.12_T3': [SKIP],
682 'intl402/9.2.2': [SKIP], 679 'intl402/9.2.2': [SKIP],
683 'language/statements/let/fn-name-arrow': [SKIP], 680 'language/statements/let/fn-name-arrow': [SKIP],
684 'language/statements/let/fn-name-cover': [SKIP], 681 'language/statements/let/fn-name-cover': [SKIP],
685 'language/statements/let/fn-name-fn': [SKIP], 682 'language/statements/let/fn-name-fn': [SKIP],
686 'language/statements/let/fn-name-gen': [SKIP], 683 'language/statements/let/fn-name-gen': [SKIP],
687 }], # ignition == True and (arch == arm or arch == arm64) 684 }], # ignition == True and (arch == arm or arch == arm64)
688 685
689 ] 686 ]
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/generators.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698