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

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

Issue 1408983006: Remove obsolete 'arguments' local variable handling. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/mjsunit/mjsunit.status ('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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 # BUG(2893): These tests started to fail after i18n support was turned on. 49 # BUG(2893): These tests started to fail after i18n support was turned on.
50 # Need to investigate why. 50 # Need to investigate why.
51 'ecma_3/Number/15.7.4.3-02': [PASS, FAIL], 51 'ecma_3/Number/15.7.4.3-02': [PASS, FAIL],
52 'ecma_3/Date/15.9.5.5-02': [PASS, FAIL], 52 'ecma_3/Date/15.9.5.5-02': [PASS, FAIL],
53 53
54 ################## TURBO-FAN FAILURES ################### 54 ################## TURBO-FAN FAILURES ###################
55 55
56 # TODO(turbofan): These are all covered by mjsunit as well. Enable them once 56 # TODO(turbofan): These are all covered by mjsunit as well. Enable them once
57 # we pass 'mjsunit' and 'webkit' with TurboFan. 57 # we pass 'mjsunit' and 'webkit' with TurboFan.
58 'js1_4/Functions/function-001': [PASS, NO_VARIANTS],
59 'js1_5/Regress/regress-80981': [PASS, NO_VARIANTS], 58 'js1_5/Regress/regress-80981': [PASS, NO_VARIANTS],
60 59
61 # TODO(turbofan): Causes timeouts since top-level code is optimized. 60 # TODO(turbofan): Causes timeouts since top-level code is optimized.
62 'ecma_3/Statements/regress-324650': [PASS, NO_VARIANTS], 61 'ecma_3/Statements/regress-324650': [PASS, NO_VARIANTS],
63 'ecma_3/Statements/regress-74474-002': [PASS, NO_VARIANTS], 62 'ecma_3/Statements/regress-74474-002': [PASS, NO_VARIANTS],
64 'ecma_3/Statements/regress-74474-003': [PASS, NO_VARIANTS], 63 'ecma_3/Statements/regress-74474-003': [PASS, NO_VARIANTS],
65 'js1_5/Regress/regress-111557': [PASS, NO_VARIANTS], 64 'js1_5/Regress/regress-111557': [PASS, NO_VARIANTS],
66 'js1_5/Regress/regress-155081': [PASS, NO_VARIANTS], 65 'js1_5/Regress/regress-155081': [PASS, NO_VARIANTS],
67 'js1_5/Regress/regress-155081-2': [PASS, NO_VARIANTS], 66 'js1_5/Regress/regress-155081-2': [PASS, NO_VARIANTS],
68 'js1_5/Regress/regress-451322': [PASS, NO_VARIANTS], 67 'js1_5/Regress/regress-451322': [PASS, NO_VARIANTS],
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 259
261 # Test that assumes specific execution time, flaky in debug mode. 260 # Test that assumes specific execution time, flaky in debug mode.
262 'js1_5/Array/regress-101964': [PASS, ['mode == debug', FAIL]], 261 'js1_5/Array/regress-101964': [PASS, ['mode == debug', FAIL]],
263 262
264 263
265 ##################### INCOMPATIBLE TESTS ##################### 264 ##################### INCOMPATIBLE TESTS #####################
266 265
267 # This section is for tests that fail in both V8 and JSC. Thus they 266 # This section is for tests that fail in both V8 and JSC. Thus they
268 # have been determined to be incompatible between Mozilla and V8/JSC. 267 # have been determined to be incompatible between Mozilla and V8/JSC.
269 268
269 # Any local 'arguments' variable should not be allowed to shadow the value
270 # returned via the indirect 'arguments' property accessor.
271 'js1_4/Functions/function-001': [FAIL_OK],
272
270 # toPrecision argument restricted to range 1..21 in JSC/V8 and ECMA-262 273 # toPrecision argument restricted to range 1..21 in JSC/V8 and ECMA-262
271 'js1_5/Regress/regress-452346': [FAIL_OK], 274 'js1_5/Regress/regress-452346': [FAIL_OK],
272 275
273 # Fail because it calls builtins as functions and do not expect the 276 # Fail because it calls builtins as functions and do not expect the
274 # builtin to have undefined as the receiver. 277 # builtin to have undefined as the receiver.
275 'ecma/String/15.5.4.6-2': [FAIL_OK], 278 'ecma/String/15.5.4.6-2': [FAIL_OK],
276 279
277 # Fail because it expects String.prototype.split to distinguish whether 280 # Fail because it expects String.prototype.split to distinguish whether
278 # separator was undefined or not passed at all. 281 # separator was undefined or not passed at all.
279 'ecma/String/15.5.4.8-2': [FAIL_OK], 282 'ecma/String/15.5.4.8-2': [FAIL_OK],
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 'ecma_3/RegExp/regress-307456': [SKIP], 963 'ecma_3/RegExp/regress-307456': [SKIP],
961 'js1_5/Regress/regress-303213': [SKIP], 964 'js1_5/Regress/regress-303213': [SKIP],
962 'js1_5/extensions/regress-330569': [SKIP], 965 'js1_5/extensions/regress-330569': [SKIP],
963 'js1_5/extensions/regress-351448': [SKIP], 966 'js1_5/extensions/regress-351448': [SKIP],
964 'js1_5/extensions/regress-336410-1': [SKIP], 967 'js1_5/extensions/regress-336410-1': [SKIP],
965 968
966 #BUG(3152): Avoid C stack overflow. 969 #BUG(3152): Avoid C stack overflow.
967 'js1_5/extensions/regress-355497': [FAIL_OK, 'Flags: --sim-stack-size=512'], 970 'js1_5/extensions/regress-355497': [FAIL_OK, 'Flags: --sim-stack-size=512'],
968 }], # 'arch == arm64 and simulator_run == True' 971 }], # 'arch == arm64 and simulator_run == True'
969 ] 972 ]
OLDNEW
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698