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

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

Issue 1738653003: [interpreter] Remove wholesale skipping of strong mode tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_strong-remove-count
Patch Set: Remove more skips. 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
« no previous file with comments | « test/cctest/cctest.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 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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 }], # 'predictable == True' 766 }], # 'predictable == True'
767 767
768 ############################################################################## 768 ##############################################################################
769 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr ue', { 769 ['arch == ppc and simulator_run == True or arch == ppc64 and simulator_run == Tr ue', {
770 770
771 # take too long with the simulator. 771 # take too long with the simulator.
772 'regress/regress-1132': [SKIP], 772 'regress/regress-1132': [SKIP],
773 }], # 'arch == ppc and simulator_run == True' 773 }], # 'arch == ppc and simulator_run == True'
774 774
775 ['ignition == True', { 775 ['ignition == True', {
776 # Skip strong mode tests since strong mode is unsupported on ignition.
777 'strong/*': [SKIP],
778
779 # TODO(yangguo,4690): Requires debugger support. 776 # TODO(yangguo,4690): Requires debugger support.
780 'es6/debug*': [SKIP], 777 'es6/debug*': [SKIP],
781 'harmony/debug*': [SKIP], 778 'harmony/debug*': [SKIP],
782 'regress/debug*': [SKIP], 779 'regress/debug*': [SKIP],
783 'regress/regress-debug*': [SKIP], 780 'regress/regress-debug*': [SKIP],
784 781
785 # TODO(yangguo,4690): assertion failures in debugger tests. 782 # TODO(yangguo,4690): assertion failures in debugger tests.
786 'debug-allscopes-on-debugger': [FAIL], 783 'debug-allscopes-on-debugger': [FAIL],
787 'debug-liveedit-restart-frame': [FAIL], 784 'debug-liveedit-restart-frame': [FAIL],
788 'debug-return-value': [FAIL], 785 'debug-return-value': [FAIL],
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 'harmony/reflect-enumerate-special-cases': [FAIL], 849 'harmony/reflect-enumerate-special-cases': [FAIL],
853 'harmony/proxies-enumerate': [FAIL], 850 'harmony/proxies-enumerate': [FAIL],
854 'harmony/reflect-enumerate-opt': [FAIL], 851 'harmony/reflect-enumerate-opt': [FAIL],
855 'harmony/reflect-enumerate': [FAIL], 852 'harmony/reflect-enumerate': [FAIL],
856 'harmony/destructuring': [FAIL], 853 'harmony/destructuring': [FAIL],
857 'harmony/regress/regress-4482': [FAIL], 854 'harmony/regress/regress-4482': [FAIL],
858 'harmony/generators': [FAIL], 855 'harmony/generators': [FAIL],
859 'harmony/iterator-close': [FAIL], 856 'harmony/iterator-close': [FAIL],
860 'harmony/reflect-construct': [FAIL], 857 'harmony/reflect-construct': [FAIL],
861 'es6/promises': [FAIL], 858 'es6/promises': [FAIL],
859 'strong/function-arity': [FAIL],
860 'strong/undefined': [FAIL],
862 861
863 # TODO(rmcilroy,4680): Pass on debug, fail on release. Fails in both modes. 862 # TODO(rmcilroy,4680): Pass on debug, fail on release. Fails in both modes.
864 # the line numbers in the stack trace are incorrect. In debug mode somehow 863 # the line numbers in the stack trace are incorrect. In debug mode somehow
865 # does not get flagged as a failure. 864 # does not get flagged as a failure.
866 'compiler/regress-stacktrace-methods': [PASS, ['mode == release', FAIL]], 865 'compiler/regress-stacktrace-methods': [PASS, ['mode == release', FAIL]],
867 866
868 # TODO(rmcilroy,4680): Test assert failures. 867 # TODO(rmcilroy,4680): Test assert failures.
869 'array-literal-feedback': [FAIL], 868 'array-literal-feedback': [FAIL],
870 'undetectable-compare': [FAIL], 869 'undetectable-compare': [FAIL],
871 'debug-liveedit-2': [FAIL], 870 'debug-liveedit-2': [FAIL],
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 # Tests taking too long. 923 # Tests taking too long.
925 'array-functions-prototype-misc': [SKIP], 924 'array-functions-prototype-misc': [SKIP],
926 'strong/implicit-conversions': [SKIP], 925 'strong/implicit-conversions': [SKIP],
927 'strong/load-element-mutate-backing-store': [SKIP], 926 'strong/load-element-mutate-backing-store': [SKIP],
928 927
929 # Stack overflow. 928 # Stack overflow.
930 'big-array-literal': [SKIP], 929 'big-array-literal': [SKIP],
931 }], # 'gcov_coverage' 930 }], # 'gcov_coverage'
932 931
933 ] 932 ]
OLDNEW
« no previous file with comments | « test/cctest/cctest.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698