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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
50 'setters-on-elements': [PASS, FAIL], | 50 'setters-on-elements': [PASS, FAIL], |
51 | 51 |
52 # Issue 3641: The new 'then' semantics suppress some exceptions. | 52 # Issue 3641: The new 'then' semantics suppress some exceptions. |
53 # These tests may be changed or removed when 'chain' is deprecated. | 53 # These tests may be changed or removed when 'chain' is deprecated. |
54 'es6/debug-promises/reject-with-throw-in-reject': [FAIL], | 54 'es6/debug-promises/reject-with-throw-in-reject': [FAIL], |
55 'es6/debug-promises/reject-with-undefined-reject': [FAIL], | 55 'es6/debug-promises/reject-with-undefined-reject': [FAIL], |
56 'es6/debug-promises/reject-with-invalid-reject': [FAIL], | 56 'es6/debug-promises/reject-with-invalid-reject': [FAIL], |
57 | 57 |
58 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does | 58 # Issue 3660: Replacing activated TurboFan frames by unoptimized code does |
59 # not work, but we expect it to not crash. | 59 # not work, but we expect it to not crash. |
60 'debug-step-turbofan': [FAIL], | 60 'debug-step-turbofan': [PASS, FAIL], |
rmcilroy
2016/08/23 12:44:25
Could we move this to be a fail for the "not ignit
Michael Starzinger
2016/08/23 12:47:07
I thought about doing this, but the problem is tha
| |
61 | 61 |
62 ############################################################################## | 62 ############################################################################## |
63 # Too slow in debug mode with --stress-opt mode. | 63 # Too slow in debug mode with --stress-opt mode. |
64 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 64 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
65 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 65 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
66 | 66 |
67 ############################################################################## | 67 ############################################################################## |
68 # Too slow in debug mode for validation of elements. | 68 # Too slow in debug mode for validation of elements. |
69 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], | 69 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], |
70 'regress/regress-430201b': [PASS, ['mode == debug', SKIP]], | 70 'regress/regress-430201b': [PASS, ['mode == debug', SKIP]], |
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
819 ############################################################################## | 819 ############################################################################## |
820 ['gcov_coverage', { | 820 ['gcov_coverage', { |
821 # Tests taking too long. | 821 # Tests taking too long. |
822 'array-functions-prototype-misc': [SKIP], | 822 'array-functions-prototype-misc': [SKIP], |
823 | 823 |
824 # Stack overflow. | 824 # Stack overflow. |
825 'big-array-literal': [SKIP], | 825 'big-array-literal': [SKIP], |
826 }], # 'gcov_coverage' | 826 }], # 'gcov_coverage' |
827 | 827 |
828 ] | 828 ] |
OLD | NEW |