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

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

Issue 2302783002: [modules] Basic support of exports (Closed)
Patch Set: . Created 4 years, 3 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
« src/parsing/parser.cc ('K') | « test/mjsunit/modules-this.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
11 # with the distribution. 11 # with the distribution.
12 # * Neither the name of Google Inc. nor the names of its 12 # * Neither the name of Google Inc. nor the names of its
13 # contributors may be used to endorse or promote products derived 13 # contributors may be used to endorse or promote products derived
14 # from this software without specific prior written permission. 14 # from this software without specific prior written permission.
15 # 15 #
16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 [ 28 [
29
29 [ALWAYS, { 30 [ALWAYS, {
30 ###################### NEEDS INVESTIGATION ####################### 31 ###################### NEEDS INVESTIGATION #######################
31 32
32 # This is an incompatibility between ES5 and V8 on enumerating 33 # This is an incompatibility between ES5 and V8 on enumerating
33 # shadowed elements in a for..in loop. 34 # shadowed elements in a for..in loop.
34 # https://code.google.com/p/v8/issues/detail?id=705 35 # https://code.google.com/p/v8/issues/detail?id=705
35 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], 36 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK],
36 37
37 ###################### MISSING ES6 FEATURES ####################### 38 ###################### MISSING ES6 FEATURES #######################
38 39
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 'built-ins/Function/prototype/toString/line-terminator-normalisation-LF': [FAI L], 314 'built-ins/Function/prototype/toString/line-terminator-normalisation-LF': [FAI L],
314 'built-ins/Function/prototype/toString/method-class': [FAIL], 315 'built-ins/Function/prototype/toString/method-class': [FAIL],
315 'built-ins/Function/prototype/toString/method-class-static': [FAIL], 316 'built-ins/Function/prototype/toString/method-class-static': [FAIL],
316 'built-ins/Function/prototype/toString/method-computed-property-name': [FAIL], 317 'built-ins/Function/prototype/toString/method-computed-property-name': [FAIL],
317 'built-ins/Function/prototype/toString/method-object': [FAIL], 318 'built-ins/Function/prototype/toString/method-object': [FAIL],
318 'built-ins/Function/prototype/toString/setter-class': [FAIL], 319 'built-ins/Function/prototype/toString/setter-class': [FAIL],
319 'built-ins/Function/prototype/toString/setter-class-static': [FAIL], 320 'built-ins/Function/prototype/toString/setter-class-static': [FAIL],
320 'built-ins/Function/prototype/toString/setter-object': [FAIL], 321 'built-ins/Function/prototype/toString/setter-object': [FAIL],
321 'built-ins/Function/prototype/toString/unicode': [FAIL], 322 'built-ins/Function/prototype/toString/unicode': [FAIL],
322 323
323 # https://bugs.chromium.org/p/v8/issues/detail?id=1569
324 'language/eval-code/direct/export': [SKIP],
325 'language/eval-code/direct/import': [SKIP],
326 'language/eval-code/indirect/export': [SKIP],
327 'language/eval-code/indirect/import': [SKIP],
328 'language/module-code/*': [SKIP],
329
330 # https://bugs.chromium.org/p/v8/issues/detail?id=5012 324 # https://bugs.chromium.org/p/v8/issues/detail?id=5012
331 # http://bugs.icu-project.org/trac/ticket/12671 325 # http://bugs.icu-project.org/trac/ticket/12671
332 'intl402/Intl/getCanonicalLocales/weird-cases': [FAIL], 326 'intl402/Intl/getCanonicalLocales/weird-cases': [FAIL],
333 # https://github.com/tc39/test262/issues/743 327 # https://github.com/tc39/test262/issues/743
334 'intl402/Intl/getCanonicalLocales/main': [FAIL], 328 'intl402/Intl/getCanonicalLocales/main': [FAIL],
335 329
336 # https://bugs.chromium.org/p/v8/issues/detail?id=5115 330 # https://bugs.chromium.org/p/v8/issues/detail?id=5115
337 'language/statements/class/subclass/class-definition-null-proto-missing-return -override': [FAIL], 331 'language/statements/class/subclass/class-definition-null-proto-missing-return -override': [FAIL],
338 'language/statements/class/subclass/class-definition-null-proto-this': [FAIL], 332 'language/statements/class/subclass/class-definition-null-proto-this': [FAIL],
339 333
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP], 633 'built-ins/Promise/prototype/then/deferred-is-resolved-value': [SKIP],
640 }], # asan == True 634 }], # asan == True
641 635
642 ['asan == True or msan == True or tsan == True', { 636 ['asan == True or msan == True or tsan == True', {
643 # https://bugs.chromium.org/p/v8/issues/detail?id=4639 637 # https://bugs.chromium.org/p/v8/issues/detail?id=4639
644 # The failed allocation causes an asan/msan/tsan error 638 # The failed allocation causes an asan/msan/tsan error
645 'built-ins/ArrayBuffer/allocation-limit': [SKIP], 639 'built-ins/ArrayBuffer/allocation-limit': [SKIP],
646 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP], 640 'built-ins/ArrayBuffer/length-is-too-large-throws': [SKIP],
647 }], # asan == True or msan == True or tsan == True 641 }], # asan == True or msan == True or tsan == True
648 642
643 # Module-related tests
644 # https://bugs.chromium.org/p/v8/issues/detail?id=1569
645 ['variant != ignition', {
646 'language/eval-code/direct/export': [SKIP],
647 'language/eval-code/direct/import': [SKIP],
648 'language/eval-code/indirect/export': [SKIP],
649 'language/eval-code/indirect/import': [SKIP],
650 'language/module-code/*': [SKIP],
651 }], # 'variant != ignition'
652 ['variant == ignition', {
653 'language/module-code/comment-*': [SKIP],
654 'language/module-code/eval-*': [SKIP],
655 'language/module-code/instn-*': [SKIP],
656 'language/module-code/namespace/*': [SKIP],
657 'language/module-code/parse-err-*': [SKIP],
658 }], # 'variant == ignition'
659
649 ] 660 ]
OLDNEW
« src/parsing/parser.cc ('K') | « test/mjsunit/modules-this.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698