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

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

Issue 1698273003: [es6] [interpreter] Add tail calls support to Ignition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@tco-turbo-2
Patch Set: Decreased number of iterations to fix timeouts Created 4 years, 10 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 26 matching lines...) Expand all
37 # Issue 1719: Slow to collect arrays over several contexts. 37 # Issue 1719: Slow to collect arrays over several contexts.
38 'regress/regress-524': [SKIP], 38 'regress/regress-524': [SKIP],
39 # When that bug is fixed, revert the expectation to: 39 # When that bug is fixed, revert the expectation to:
40 # Skip long running test in debug and allow it to timeout in release mode. 40 # Skip long running test in debug and allow it to timeout in release mode.
41 # regress/regress-524: [PASS, TIMEOUT, ['mode == debug', SKIP]], 41 # regress/regress-524: [PASS, TIMEOUT, ['mode == debug', SKIP]],
42 42
43 # This test non-deterministically runs out of memory on Windows ia32. 43 # This test non-deterministically runs out of memory on Windows ia32.
44 'regress/regress-crbug-160010': [SKIP], 44 'regress/regress-crbug-160010': [SKIP],
45 45
46 # Issue 4698: not fully supported by Turbofan yet 46 # Issue 4698: not fully supported by Turbofan yet
47 'es6/tail-call-simple': [SKIP],
48 'es6/tail-call': [PASS, NO_VARIANTS], 47 'es6/tail-call': [PASS, NO_VARIANTS],
49 48
50 # Issue 3389: deopt_every_n_garbage_collections is unsafe 49 # Issue 3389: deopt_every_n_garbage_collections is unsafe
51 'regress/regress-2653': [SKIP], 50 'regress/regress-2653': [SKIP],
52 51
53 # Issue 3784: setters-on-elements is flaky 52 # Issue 3784: setters-on-elements is flaky
54 'setters-on-elements': [PASS, FAIL], 53 'setters-on-elements': [PASS, FAIL],
55 54
56 # Issue 3641: The new 'then' semantics suppress some exceptions. 55 # Issue 3641: The new 'then' semantics suppress some exceptions.
57 # These tests may be changed or removed when 'chain' is deprecated. 56 # These tests may be changed or removed when 'chain' is deprecated.
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 837
839 # TODO(rmcilroy,4680): Pass on debug, fail on release. 838 # TODO(rmcilroy,4680): Pass on debug, fail on release.
840 'compiler/regress-stacktrace-methods': [PASS, FAIL], 839 'compiler/regress-stacktrace-methods': [PASS, FAIL],
841 840
842 # TODO(rmcilroy,4680): Test assert failures. 841 # TODO(rmcilroy,4680): Test assert failures.
843 'array-literal-feedback': [FAIL], 842 'array-literal-feedback': [FAIL],
844 'undetectable-compare': [FAIL], 843 'undetectable-compare': [FAIL],
845 'debug-liveedit-2': [FAIL], 844 'debug-liveedit-2': [FAIL],
846 'compiler/deopt-tonumber-compare': [FAIL], 845 'compiler/deopt-tonumber-compare': [FAIL],
847 'es6/string-search': [FAIL], 846 'es6/string-search': [FAIL],
848 'es6/tail-call-proxies': [FAIL],
849 'es6/tail-call': [FAIL],
850 'es6/tail-call-simple': [FAIL],
851 'es6/mirror-collections': [FAIL], 847 'es6/mirror-collections': [FAIL],
852 'es6/regress/regress-468661': [FAIL], 848 'es6/regress/regress-468661': [FAIL],
853 'harmony/string-replace': [FAIL], 849 'harmony/string-replace': [FAIL],
854 'harmony/string-match': [FAIL], 850 'harmony/string-match': [FAIL],
855 'harmony/string-split': [FAIL], 851 'harmony/string-split': [FAIL],
856 'regress/regress-2618': [FAIL], 852 'regress/regress-2618': [FAIL],
857 'regress/regress-4121': [FAIL], 853 'regress/regress-4121': [FAIL],
858 'regress/regress-4266': [FAIL], 854 'regress/regress-4266': [FAIL],
859 'harmony/simd': [FAIL], 855 'harmony/simd': [FAIL],
860 'regress/regress-crbug-109362': [FAIL], 856 'regress/regress-crbug-109362': [FAIL],
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 # Tests taking too long. 972 # Tests taking too long.
977 'array-functions-prototype-misc': [SKIP], 973 'array-functions-prototype-misc': [SKIP],
978 'strong/implicit-conversions': [SKIP], 974 'strong/implicit-conversions': [SKIP],
979 'strong/load-element-mutate-backing-store': [SKIP], 975 'strong/load-element-mutate-backing-store': [SKIP],
980 976
981 # Stack overflow. 977 # Stack overflow.
982 'big-array-literal': [SKIP], 978 'big-array-literal': [SKIP],
983 }], # 'gcov_coverage' 979 }], # 'gcov_coverage'
984 980
985 ] 981 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698