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

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

Issue 1259283002: [es6] Implement proper TDZ for parameters (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Adjust test expectations Created 5 years, 4 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/parser.h ('K') | « test/mjsunit/harmony/destructuring.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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 429
430 # https://code.google.com/p/v8/issues/detail?id=4245 430 # https://code.google.com/p/v8/issues/detail?id=4245
431 'built-ins/String/prototype/split/S15.5.4.14_A2_T37': [FAIL], 431 'built-ins/String/prototype/split/S15.5.4.14_A2_T37': [FAIL],
432 432
433 # The order of adding the name property is wrong 433 # The order of adding the name property is wrong
434 # https://code.google.com/p/v8/issues/detail?id=4199 434 # https://code.google.com/p/v8/issues/detail?id=4199
435 'language/computed-property-names/class/static/method-number': [FAIL, FAIL_SLO PPY], 435 'language/computed-property-names/class/static/method-number': [FAIL, FAIL_SLO PPY],
436 'language/computed-property-names/class/static/method-symbol': [FAIL, FAIL_SLO PPY], 436 'language/computed-property-names/class/static/method-symbol': [FAIL, FAIL_SLO PPY],
437 'language/computed-property-names/class/static/method-string': [FAIL, FAIL_SLO PPY], 437 'language/computed-property-names/class/static/method-string': [FAIL, FAIL_SLO PPY],
438 438
439 # This should work as soon as rest parameters are re-implemented via desagurin g.
440 'language/expressions/arrow-function/syntax/early-errors/arrowparameters-cover -no-duplicates-rest': [PASS, FAIL],
441
439 # https://code.google.com/p/v8/issues/detail?id=2160 442 # https://code.google.com/p/v8/issues/detail?id=2160
440 'language/expressions/arrow-function/syntax/arrowparameters-cover-initialize-1 ': [FAIL], 443 'language/expressions/arrow-function/syntax/arrowparameters-cover-initialize-1 ': [FAIL],
441 'language/expressions/arrow-function/syntax/arrowparameters-cover-initialize-2 ': [FAIL], 444 'language/expressions/arrow-function/syntax/arrowparameters-cover-initialize-2 ': [FAIL],
442 'language/expressions/object/method-definition/generator-super-prop-param': [F AIL], 445 'language/expressions/object/method-definition/generator-super-prop-param': [F AIL],
443 'language/expressions/object/method-definition/name-param-init-yield': [FAIL], 446 'language/expressions/object/method-definition/name-param-init-yield': [FAIL],
444 'language/expressions/object/method-definition/name-super-prop-param': [FAIL], 447 'language/expressions/object/method-definition/name-super-prop-param': [FAIL],
445 448
446 # https://code.google.com/p/v8/issues/detail?id=3673 449 # https://code.google.com/p/v8/issues/detail?id=3673
447 'language/statements/class/definition/basics': [FAIL], 450 'language/statements/class/definition/basics': [FAIL],
448 451
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 755
753 # BUG(3251225): Tests that timeout with --nocrankshaft. 756 # BUG(3251225): Tests that timeout with --nocrankshaft.
754 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], 757 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP],
755 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], 758 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP],
756 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], 759 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP],
757 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], 760 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP],
758 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], 761 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP],
759 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], 762 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP],
760 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' 763 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64'
761 ] 764 ]
OLDNEW
« src/parser.h ('K') | « test/mjsunit/harmony/destructuring.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698