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 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 # Skip strong mode tests since strong mode is unsupported on ignition. | 757 # Skip strong mode tests since strong mode is unsupported on ignition. |
758 'strong/*': [SKIP], | 758 'strong/*': [SKIP], |
759 | 759 |
760 # TODO(yangguo,4690): Requires debugger support. | 760 # TODO(yangguo,4690): Requires debugger support. |
761 'debug-*': [SKIP], | 761 'debug-*': [SKIP], |
762 'es6/debug*': [SKIP], | 762 'es6/debug*': [SKIP], |
763 'harmony/debug*': [SKIP], | 763 'harmony/debug*': [SKIP], |
764 'regress/debug*': [SKIP], | 764 'regress/debug*': [SKIP], |
765 'regress/regress-debug*': [SKIP], | 765 'regress/regress-debug*': [SKIP], |
766 | 766 |
767 # TODO(yangguo,4690): Failing in debugger DebuggerInspectableFrame. | |
768 'for-in-opt': [FAIL], | |
769 'regress/regress-4309-2': [FAIL], | |
770 'regress/regress-4309-3': [FAIL], | |
771 'regress/regress-4309-1': [FAIL], | |
772 | |
773 # TODO(yangguo,4690): debug-scopes.cc failure in ScopeIterator::Type | 767 # TODO(yangguo,4690): debug-scopes.cc failure in ScopeIterator::Type |
774 # DCHECK(context_->IsFunctionContext() || !scope_info->HasContext()); | 768 # DCHECK(context_->IsFunctionContext() || !scope_info->HasContext()); |
775 'regress/regress-crbug-582051': [SKIP], | 769 'regress/regress-crbug-582051': [SKIP], |
776 | 770 |
777 # TODO(yangguo,4690): Check failure in debug.cc BreakLocation::SetBreakPoint | 771 # TODO(yangguo,4690): Check failure in debug.cc BreakLocation::SetBreakPoint |
778 # DCHECK(IsDebugBreak() || IsDebuggerStatement()); | 772 # DCHECK(IsDebugBreak() || IsDebuggerStatement()); |
779 'regress/regress-1523': [FAIL], | 773 'regress/regress-1523': [FAIL], |
780 'regress/regress-102153': [FAIL], | 774 'regress/regress-102153': [FAIL], |
781 'regress/regress-1586': [FAIL], | 775 'regress/regress-1586': [FAIL], |
782 'regress/regress-2825': [FAIL], | 776 'regress/regress-2825': [FAIL], |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1015 # Tests taking too long. | 1009 # Tests taking too long. |
1016 'array-functions-prototype-misc': [SKIP], | 1010 'array-functions-prototype-misc': [SKIP], |
1017 'strong/implicit-conversions': [SKIP], | 1011 'strong/implicit-conversions': [SKIP], |
1018 'strong/load-element-mutate-backing-store': [SKIP], | 1012 'strong/load-element-mutate-backing-store': [SKIP], |
1019 | 1013 |
1020 # Stack overflow. | 1014 # Stack overflow. |
1021 'big-array-literal': [SKIP], | 1015 'big-array-literal': [SKIP], |
1022 }], # 'gcov_coverage' | 1016 }], # 'gcov_coverage' |
1023 | 1017 |
1024 ] | 1018 ] |
OLD | NEW |