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

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

Issue 1226143009: Fix limit calculation in String.prototype.split (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed test expectations Created 5 years, 5 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/string.js ('K') | « src/string.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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 426
427 # https://code.google.com/p/v8/issues/detail?id=4244 427 # https://code.google.com/p/v8/issues/detail?id=4244
428 'built-ins/RegExp/prototype/exec/S15.10.6.2_A5_T3': [FAIL], 428 'built-ins/RegExp/prototype/exec/S15.10.6.2_A5_T3': [FAIL],
429 429
430 # https://code.google.com/p/v8/issues/detail?id=4006 430 # https://code.google.com/p/v8/issues/detail?id=4006
431 'built-ins/String/prototype/S15.5.4_A1': [FAIL], 431 'built-ins/String/prototype/S15.5.4_A1': [FAIL],
432 'built-ins/String/prototype/S15.5.4_A2': [FAIL], 432 'built-ins/String/prototype/S15.5.4_A2': [FAIL],
433 'built-ins/String/prototype/S15.5.4_A3': [FAIL], 433 'built-ins/String/prototype/S15.5.4_A3': [FAIL],
434 'language/expressions/property-accessors/S11.2.1_A4_T5': [FAIL], 434 'language/expressions/property-accessors/S11.2.1_A4_T5': [FAIL],
435 435
436 # https://code.google.com/p/v8/issues/detail?id=4245
437 'built-ins/String/prototype/split/S15.5.4.14_A2_T37': [FAIL],
438
439 # The order of adding the name property is wrong 436 # The order of adding the name property is wrong
440 # https://code.google.com/p/v8/issues/detail?id=4199 437 # https://code.google.com/p/v8/issues/detail?id=4199
441 'language/computed-property-names/class/static/method-number': [FAIL, FAIL_SLO PPY], 438 'language/computed-property-names/class/static/method-number': [FAIL, FAIL_SLO PPY],
442 'language/computed-property-names/class/static/method-symbol': [FAIL, FAIL_SLO PPY], 439 'language/computed-property-names/class/static/method-symbol': [FAIL, FAIL_SLO PPY],
443 'language/computed-property-names/class/static/method-string': [FAIL, FAIL_SLO PPY], 440 'language/computed-property-names/class/static/method-string': [FAIL, FAIL_SLO PPY],
444 441
445 # new.target 442 # new.target
446 # https://code.google.com/p/v8/issues/detail?id=3887 443 # https://code.google.com/p/v8/issues/detail?id=3887
447 'language/expressions/arrow-function/lexical-new.target': [FAIL], 444 'language/expressions/arrow-function/lexical-new.target': [FAIL],
448 'language/expressions/arrow-function/lexical-new.target-closure-returned': [FA IL], 445 'language/expressions/arrow-function/lexical-new.target-closure-returned': [FA IL],
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 760
764 # BUG(3251225): Tests that timeout with --nocrankshaft. 761 # BUG(3251225): Tests that timeout with --nocrankshaft.
765 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], 762 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP],
766 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], 763 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP],
767 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], 764 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP],
768 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], 765 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP],
769 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], 766 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP],
770 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], 767 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP],
771 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' 768 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64'
772 ] 769 ]
OLDNEW
« src/string.js ('K') | « src/string.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698