| OLD | NEW |
| 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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 | 761 |
| 762 # take too long with the simulator. | 762 # take too long with the simulator. |
| 763 'regress/regress-1132': [SKIP], | 763 'regress/regress-1132': [SKIP], |
| 764 }], # 'arch == ppc and simulator_run == True' | 764 }], # 'arch == ppc and simulator_run == True' |
| 765 | 765 |
| 766 ['ignition == True', { | 766 ['ignition == True', { |
| 767 # Skip strong mode tests since strong mode is unsupported on ignition. | 767 # Skip strong mode tests since strong mode is unsupported on ignition. |
| 768 'strong/*': [SKIP], | 768 'strong/*': [SKIP], |
| 769 | 769 |
| 770 # TODO(yangguo,4690): Requires debugger support. | 770 # TODO(yangguo,4690): Requires debugger support. |
| 771 'debug-*': [SKIP], | |
| 772 'es6/debug*': [SKIP], | 771 'es6/debug*': [SKIP], |
| 773 'harmony/debug*': [SKIP], | 772 'harmony/debug*': [SKIP], |
| 774 'regress/debug*': [SKIP], | 773 'regress/debug*': [SKIP], |
| 775 'regress/regress-debug*': [SKIP], | 774 'regress/regress-debug*': [SKIP], |
| 776 | 775 |
| 776 # TODO(yangguo,4690): assertion failures in debugger tests. |
| 777 'debug-allscopes-on-debugger': [FAIL], |
| 778 'debug-liveedit-restart-frame': [FAIL], |
| 779 'debug-return-value': [FAIL], |
| 780 'debug-liveedit-literals': [FAIL], |
| 781 'debug-liveedit-3': [FAIL], |
| 782 'debug-liveedit-1': [FAIL], |
| 783 'debug-step-into-json': [FAIL], |
| 784 'debug-liveedit-patch-positions-replace': [FAIL], |
| 785 'debug-step-into-valueof': [FAIL], |
| 786 'debug-liveedit-patch-positions': [FAIL], |
| 787 'debug-liveedit-stepin': [FAIL], |
| 788 'debug-step-4': [FAIL], |
| 789 'debug-liveedit-newsource': [FAIL], |
| 790 'debug-liveedit-stack-padding': [FAIL], |
| 791 'debug-stepframe': [FAIL], |
| 792 'debug-negative-break-points': [FAIL], |
| 793 'debug-stepin-accessor': [FAIL], |
| 794 'debug-step-stub-callfunction': [FAIL], |
| 795 'debug-liveedit-breakpoints': [FAIL], |
| 796 'debug-stepin-accessor-ic': [FAIL], |
| 797 'debug-stepin-builtin': [FAIL], |
| 798 'debug-stepin-foreach': [FAIL], |
| 799 'debug-stepnext-do-while': [FAIL], |
| 800 'debug-stepin-builtin-callback-opt': [FAIL], |
| 801 'debug-stepin-function-call': [FAIL], |
| 802 |
| 777 # TODO(yangguo,4690): Check failure in debug.cc BreakLocation::SetBreakPoint | 803 # TODO(yangguo,4690): Check failure in debug.cc BreakLocation::SetBreakPoint |
| 778 # DCHECK(IsDebugBreak() || IsDebuggerStatement()); | 804 # DCHECK(IsDebugBreak() || IsDebuggerStatement()); |
| 779 'regress/regress-1523': [FAIL], | 805 'regress/regress-1523': [FAIL], |
| 780 'regress/regress-102153': [FAIL], | 806 'regress/regress-102153': [FAIL], |
| 781 'regress/regress-2825': [FAIL], | 807 'regress/regress-2825': [FAIL], |
| 782 'regress/regress-crbug-119800': [FAIL], | 808 'regress/regress-crbug-119800': [FAIL], |
| 783 'regress/regress-crbug-467180': [FAIL], | 809 'regress/regress-crbug-467180': [FAIL], |
| 784 'regress/regress-opt-after-debug-deopt': [FAIL], | 810 'regress/regress-opt-after-debug-deopt': [FAIL], |
| 785 | 811 |
| 786 # TODO(rmcilroy,4681): Requires support for generators. | 812 # TODO(rmcilroy,4681): Requires support for generators. |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 891 # Tests taking too long. | 917 # Tests taking too long. |
| 892 'array-functions-prototype-misc': [SKIP], | 918 'array-functions-prototype-misc': [SKIP], |
| 893 'strong/implicit-conversions': [SKIP], | 919 'strong/implicit-conversions': [SKIP], |
| 894 'strong/load-element-mutate-backing-store': [SKIP], | 920 'strong/load-element-mutate-backing-store': [SKIP], |
| 895 | 921 |
| 896 # Stack overflow. | 922 # Stack overflow. |
| 897 'big-array-literal': [SKIP], | 923 'big-array-literal': [SKIP], |
| 898 }], # 'gcov_coverage' | 924 }], # 'gcov_coverage' |
| 899 | 925 |
| 900 ] | 926 ] |
| OLD | NEW |