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

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

Issue 1571873004: Ship ES2015 sloppy-mode const semantics (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: More test failures noted Created 4 years, 11 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
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'language/block-scope/shadowing/dynamic-lookup-from-closure': [PASS], 55 'language/block-scope/shadowing/dynamic-lookup-from-closure': [PASS],
56 'language/block-scope/shadowing/lookup-from-closure': [PASS], 56 'language/block-scope/shadowing/lookup-from-closure': [PASS],
57 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-function-declaration': [PASS], 57 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-function-declaration': [PASS],
58 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-var': [PASS], 58 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-var': [PASS],
59 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w ith-function-declaration': [PASS], 59 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w ith-function-declaration': [PASS],
60 'language/statements/let/block-local-closure-set-before-initialization': [PASS ], 60 'language/statements/let/block-local-closure-set-before-initialization': [PASS ],
61 61
62 # https://code.google.com/p/v8/issues/detail?id=4405 62 # https://code.google.com/p/v8/issues/detail?id=4405
63 'language/block-scope/leave/outermost-binding-updated-in-catch-block-nested-bl ock-let-declaration-unseen-outside-of-block': [PASS, FAIL], 63 'language/block-scope/leave/outermost-binding-updated-in-catch-block-nested-bl ock-let-declaration-unseen-outside-of-block': [PASS, FAIL],
64 64
65 # https://code.google.com/p/v8/issues/detail?id=3305
66 # This times out in sloppy mode because sloppy const assignment does not throw .
67 'language/statements/const/syntax/const-invalid-assignment-next-expression-for ': [SKIP],
68
69 # It's unclear what the right behavior for [[Enumerate]] is; we're awaiting 65 # It's unclear what the right behavior for [[Enumerate]] is; we're awaiting
70 # clarification in the spec. Currently, our for-in implementation for 66 # clarification in the spec. Currently, our for-in implementation for
71 # Proxies checks all trap result values for being strings... 67 # Proxies checks all trap result values for being strings...
72 'built-ins/Proxy/enumerate/return-trap-result': [FAIL], 68 'built-ins/Proxy/enumerate/return-trap-result': [FAIL],
73 # ...and our Reflect.enumerate implementation is built on for-in by wrapping 69 # ...and our Reflect.enumerate implementation is built on for-in by wrapping
74 # the iteration's results in a new generator; this postpones exceptions. 70 # the iteration's results in a new generator; this postpones exceptions.
75 'built-ins/Reflect/enumerate/return-abrupt-from-result': [FAIL], 71 'built-ins/Reflect/enumerate/return-abrupt-from-result': [FAIL],
76 72
77 # https://code.google.com/p/v8/issues/detail?id=4093 73 # https://code.google.com/p/v8/issues/detail?id=4093
78 'built-ins/Array/symbol-species': [FAIL], 74 'built-ins/Array/symbol-species': [FAIL],
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 'built-ins/decodeURIComponent/S15.1.3.2_A1.13_T2': [SKIP], 745 'built-ins/decodeURIComponent/S15.1.3.2_A1.13_T2': [SKIP],
750 'built-ins/decodeURIComponent/S15.1.3.2_A1.14_T1': [SKIP], 746 'built-ins/decodeURIComponent/S15.1.3.2_A1.14_T1': [SKIP],
751 'built-ins/decodeURIComponent/S15.1.3.2_A1.14_T2': [SKIP], 747 'built-ins/decodeURIComponent/S15.1.3.2_A1.14_T2': [SKIP],
752 'built-ins/decodeURIComponent/S15.1.3.2_A1.2_T1': [SKIP], 748 'built-ins/decodeURIComponent/S15.1.3.2_A1.2_T1': [SKIP],
753 'built-ins/decodeURIComponent/S15.1.3.2_A1.2_T2': [SKIP], 749 'built-ins/decodeURIComponent/S15.1.3.2_A1.2_T2': [SKIP],
754 'built-ins/encodeURI*': [SKIP], 750 'built-ins/encodeURI*': [SKIP],
755 'intl402/9.2.2': [SKIP], 751 'intl402/9.2.2': [SKIP],
756 }], # ignition == True and (arch == arm or arch == arm64) 752 }], # ignition == True and (arch == arm or arch == arm64)
757 753
758 ] 754 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698