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

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

Issue 788773003: Update tests in preparation for shipping classes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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 | « test/preparser/strict-function-statement.pyt ('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 19 matching lines...) Expand all
30 ############################### BUGS ################################### 30 ############################### BUGS ###################################
31 31
32 '15.5.4.9_CE': [['no_i18n', SKIP]], 32 '15.5.4.9_CE': [['no_i18n', SKIP]],
33 33
34 # BUG(v8:3455) 34 # BUG(v8:3455)
35 '11.2.3_b': [FAIL], 35 '11.2.3_b': [FAIL],
36 '12.2.3_b': [FAIL], 36 '12.2.3_b': [FAIL],
37 37
38 ############################### ES6 ################################### 38 ############################### ES6 ###################################
39 # ES6 allows block-local functions. 39 # ES6 allows block-local functions.
40 'Sbp_A1_T1': [PASS, FAIL], 40 'Sbp_A1_T1': [PASS, FAIL_OK],
arv (Not doing code reviews) 2014/12/11 15:16:22 Do you know if this format is documented anywhere?
Dmitry Lomov (no reviews) 2014/12/11 15:26:15 No, apparently it is "self-evident" ;) FAIL is a b
41 'Sbp_A2_T1': [PASS, FAIL], 41 'Sbp_A2_T1': [PASS, FAIL_OK],
42 'Sbp_A2_T2': [PASS, FAIL], 42 'Sbp_A2_T2': [PASS, FAIL_OK],
43 'Sbp_A3_T1': [PASS, FAIL], 43 'Sbp_A3_T1': [PASS, FAIL_OK],
44 'Sbp_A3_T2': [PASS, FAIL], 44 'Sbp_A3_T2': [PASS, FAIL_OK],
45 'Sbp_A4_T1': [PASS, FAIL], 45 'Sbp_A4_T1': [PASS, FAIL_OK],
46 'Sbp_A4_T2': [PASS, FAIL], 46 'Sbp_A4_T2': [PASS, FAIL_OK],
47 'Sbp_A5_T1': [PASS], # Test is broken (strict reference to unbound variable) 47 'Sbp_A5_T1': [PASS], # Test is broken (strict reference to unbound variable)
48 'Sbp_A5_T2': [PASS, FAIL], 48 'Sbp_A5_T2': [PASS, FAIL_OK],
49
50 # Passes in ES6 since {__arr} syntax is parsed as object literal.
51 'S12.1_A4_T2': [PASS, FAIL_OK],
52 'S12.6.4_A15': [PASS, FAIL_OK],
49 53
50 ######################## NEEDS INVESTIGATION ########################### 54 ######################## NEEDS INVESTIGATION ###########################
51 55
52 # These test failures are specific to the intl402 suite and need investigation 56 # These test failures are specific to the intl402 suite and need investigation
53 # to be either marked as bugs with issues filed for them or as deliberate 57 # to be either marked as bugs with issues filed for them or as deliberate
54 # incompatibilities if the test cases turn out to be broken or ambiguous. 58 # incompatibilities if the test cases turn out to be broken or ambiguous.
55 '6.2.3': [FAIL], 59 '6.2.3': [FAIL],
56 '9.2.1_2': [FAIL], 60 '9.2.1_2': [FAIL],
57 '9.2.6_2': [FAIL], 61 '9.2.6_2': [FAIL],
58 '10.1.1_a': [FAIL], 62 '10.1.1_a': [FAIL],
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 134
131 # BUG(3251225): Tests that timeout with --nocrankshaft. 135 # BUG(3251225): Tests that timeout with --nocrankshaft.
132 'S15.1.3.1_A2.4_T1': [SKIP], 136 'S15.1.3.1_A2.4_T1': [SKIP],
133 'S15.1.3.1_A2.5_T1': [SKIP], 137 'S15.1.3.1_A2.5_T1': [SKIP],
134 'S15.1.3.2_A2.4_T1': [SKIP], 138 'S15.1.3.2_A2.4_T1': [SKIP],
135 'S15.1.3.2_A2.5_T1': [SKIP], 139 'S15.1.3.2_A2.5_T1': [SKIP],
136 'S15.1.3.3_A2.3_T1': [SKIP], 140 'S15.1.3.3_A2.3_T1': [SKIP],
137 'S15.1.3.4_A2.3_T1': [SKIP], 141 'S15.1.3.4_A2.3_T1': [SKIP],
138 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' 142 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64'
139 ] 143 ]
OLDNEW
« no previous file with comments | « test/preparser/strict-function-statement.pyt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698