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

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

Issue 1420223003: Stage ES2015-style const in sloppy mode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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 | « src/flag-definitions.h ('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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 'built-ins/Math/sin/S15.8.2.16_A7': [PASS, FAIL_OK], 67 'built-ins/Math/sin/S15.8.2.16_A7': [PASS, FAIL_OK],
68 'built-ins/Math/tan/S15.8.2.18_A7': [PASS, FAIL_OK], 68 'built-ins/Math/tan/S15.8.2.18_A7': [PASS, FAIL_OK],
69 69
70 # This is an incompatibility between ES5 and V8 on enumerating 70 # This is an incompatibility between ES5 and V8 on enumerating
71 # shadowed elements in a for..in loop. 71 # shadowed elements in a for..in loop.
72 # https://code.google.com/p/v8/issues/detail?id=705 72 # https://code.google.com/p/v8/issues/detail?id=705
73 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], 73 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK],
74 74
75 ###################### MISSING ES6 FEATURES ####################### 75 ###################### MISSING ES6 FEATURES #######################
76 76
77 # Const is still interpreted as legacy const in sloppy mode
78 # https://code.google.com/p/v8/issues/detail?id=3305
79 'language/block-scope/shadowing/const-declaration-shadowing-catch-parameter': [PASS, FAIL_SLOPPY],
80 'language/block-scope/shadowing/const-declarations-shadowing-parameter-name-le t-const-and-var-variables': [PASS, FAIL_SLOPPY],
81 'language/statements/const/block-local-closure-get-before-initialization': [PA SS, FAIL_SLOPPY],
82 'language/statements/const/block-local-use-before-initialization-in-declaratio n-statement': [PASS, FAIL_SLOPPY],
83 'language/statements/const/block-local-use-before-initialization-in-prior-stat ement': [PASS, FAIL_SLOPPY],
84 'language/statements/const/function-local-closure-get-before-initialization': [PASS, FAIL_SLOPPY],
85 'language/statements/const/function-local-use-before-initialization-in-declara tion-statement': [PASS, FAIL_SLOPPY],
86 'language/statements/const/function-local-use-before-initialization-in-prior-s tatement': [PASS, FAIL_SLOPPY],
87 'language/statements/const/global-closure-get-before-initialization': [PASS, F AIL_SLOPPY],
88 'language/statements/const/global-use-before-initialization-in-declaration-sta tement': [PASS, FAIL_SLOPPY],
89 'language/statements/const/global-use-before-initialization-in-prior-statement ': [PASS, FAIL_SLOPPY],
90 'language/statements/const/syntax/block-scope-syntax-const-declarations-mixed- with-without-initialiser': [PASS, FAIL_SLOPPY],
91 'language/statements/const/syntax/block-scope-syntax-const-declarations-mixed- without-with-initialiser': [PASS, FAIL_SLOPPY],
92 'language/statements/const/syntax/block-scope-syntax-const-declarations-withou t-initialiser': [PASS, FAIL_SLOPPY],
93 'language/statements/const/syntax/const': [PASS, FAIL_SLOPPY],
94 'language/statements/const/syntax/const-invalid-assignment-statement-body-for- in': [PASS, FAIL_SLOPPY],
95 'language/statements/const/syntax/const-invalid-assignment-statement-body-for- of': [PASS, FAIL_SLOPPY],
96 'language/statements/const/syntax/const-outer-inner-let-bindings': [PASS, FAIL _SLOPPY],
97 'language/statements/const/syntax/with-initializer-do-statement-while-expressi on': [PASS, FAIL_SLOPPY],
98 'language/statements/const/syntax/with-initializer-for-statement': [PASS, FAIL _SLOPPY],
99 'language/statements/const/syntax/with-initializer-if-expression-statement': [ PASS, FAIL_SLOPPY],
100 'language/statements/const/syntax/with-initializer-if-expression-statement-els e-statement': [PASS, FAIL_SLOPPY],
101 'language/statements/const/syntax/with-initializer-label-statement': [PASS, FA IL_SLOPPY],
102 'language/statements/const/syntax/with-initializer-while-expression-statement' : [PASS, FAIL_SLOPPY],
103 'language/statements/const/syntax/without-initializer-case-expression-statemen t-list': [PASS, FAIL_SLOPPY],
104 'language/statements/const/syntax/without-initializer-default-statement-list': [PASS, FAIL_SLOPPY],
105 'language/statements/const/syntax/without-initializer-do-statement-while-expre ssion': [PASS, FAIL_SLOPPY],
106 'language/statements/const/syntax/without-initializer-for-statement': [PASS, F AIL_SLOPPY],
107 'language/statements/const/syntax/without-initializer-if-expression-statement' : [PASS, FAIL_SLOPPY],
108 'language/statements/const/syntax/without-initializer-if-expression-statement- else-statement': [PASS, FAIL_SLOPPY],
109 'language/statements/const/syntax/without-initializer-label-statement': [PASS, FAIL_SLOPPY],
110 'language/statements/const/syntax/without-initializer-while-expression-stateme nt': [PASS, FAIL_SLOPPY],
111 'language/statements/for-in/const-bound-names-fordecl-tdz-for-in': [PASS, FAIL _SLOPPY],
112 'language/statements/for-in/const-fresh-binding-per-iteration-for-in': [PASS, FAIL_SLOPPY],
113 'language/statements/for-of/const-bound-names-fordecl-tdz-for-of': [PASS, FAIL _SLOPPY],
114 'language/statements/for-of/const-fresh-binding-per-iteration-for-of': [PASS, FAIL_SLOPPY],
115
116 # Functions in blocks are var-declared and hoisted in sloppy mode 77 # Functions in blocks are var-declared and hoisted in sloppy mode
117 # https://code.google.com/p/v8/issues/detail?id=3305 78 # https://code.google.com/p/v8/issues/detail?id=3305
118 'language/block-scope/shadowing/dynamic-lookup-from-closure': [PASS, FAIL_SLOP PY], 79 'language/block-scope/shadowing/dynamic-lookup-from-closure': [PASS, FAIL_SLOP PY],
119 'language/block-scope/shadowing/lookup-from-closure': [PASS, FAIL_SLOPPY], 80 'language/block-scope/shadowing/lookup-from-closure': [PASS, FAIL_SLOPPY],
120 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-function-declaration': [PASS, FAIL_SLOPPY], 81 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-function-declaration': [PASS, FAIL_SLOPPY],
121 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-var': [PASS, FAIL_SLOPPY], 82 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-var': [PASS, FAIL_SLOPPY],
122 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w ith-function-declaration': [PASS, FAIL_SLOPPY], 83 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w ith-function-declaration': [PASS, FAIL_SLOPPY],
123 'language/statements/let/block-local-closure-set-before-initialization': [PASS , FAIL_SLOPPY], 84 'language/statements/let/block-local-closure-set-before-initialization': [PASS , FAIL_SLOPPY],
124 85
125 # https://code.google.com/p/v8/issues/detail?id=4405 86 # https://code.google.com/p/v8/issues/detail?id=4405
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 797
837 # BUG(3251225): Tests that timeout with --nocrankshaft. 798 # BUG(3251225): Tests that timeout with --nocrankshaft.
838 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], 799 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP],
839 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], 800 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP],
840 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], 801 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP],
841 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], 802 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP],
842 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], 803 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP],
843 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], 804 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP],
844 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' 805 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64'
845 ] 806 ]
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698