| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 # Assumptions about optimization need investigation in TurboFan. | 145 # Assumptions about optimization need investigation in TurboFan. |
| 146 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], | 146 'regress-sync-optimized-lists': [PASS, NO_VARIANTS], |
| 147 'regress/regress-store-uncacheable': [PASS, NO_VARIANTS], | 147 'regress/regress-store-uncacheable': [PASS, NO_VARIANTS], |
| 148 | 148 |
| 149 # issue 4078: | 149 # issue 4078: |
| 150 'allocation-site-info': [PASS, NO_VARIANTS], | 150 'allocation-site-info': [PASS, NO_VARIANTS], |
| 151 | 151 |
| 152 # TODO(turbofan): The escape analysis needs some investigation. | 152 # TODO(turbofan): The escape analysis needs some investigation. |
| 153 'compiler/escape-analysis-*': [PASS, NO_VARIANTS], | 153 'compiler/escape-analysis-*': [PASS, NO_VARIANTS], |
| 154 | 154 |
| 155 # TODO(turbofan, caitp): Figure out problem with async arrow functions and |
| 156 # throw resumption in TurboFan |
| 157 'harmony/async-await-basic': [PASS, NO_VARIANTS], |
| 158 |
| 155 ############################################################################## | 159 ############################################################################## |
| 156 # Too slow in debug mode with --stress-opt mode. | 160 # Too slow in debug mode with --stress-opt mode. |
| 157 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], | 161 'compiler/regress-stacktrace-methods': [PASS, ['mode == debug', SKIP]], |
| 158 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], | 162 'compiler/regress-funcaller': [PASS, ['mode == debug', SKIP]], |
| 159 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], | 163 'regress/regress-2318': [PASS, ['mode == debug', SKIP]], |
| 160 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], | 164 'regress/regress-create-exception': [PASS, ['mode == debug', SKIP]], |
| 161 | 165 |
| 162 ############################################################################## | 166 ############################################################################## |
| 163 # Too slow in debug mode for validation of elements. | 167 # Too slow in debug mode for validation of elements. |
| 164 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], | 168 'regress/regress-430201': [PASS, ['mode == debug', SKIP]], |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 ############################################################################## | 857 ############################################################################## |
| 854 ['gcov_coverage', { | 858 ['gcov_coverage', { |
| 855 # Tests taking too long. | 859 # Tests taking too long. |
| 856 'array-functions-prototype-misc': [SKIP], | 860 'array-functions-prototype-misc': [SKIP], |
| 857 | 861 |
| 858 # Stack overflow. | 862 # Stack overflow. |
| 859 'big-array-literal': [SKIP], | 863 'big-array-literal': [SKIP], |
| 860 }], # 'gcov_coverage' | 864 }], # 'gcov_coverage' |
| 861 | 865 |
| 862 ] | 866 ] |
| OLD | NEW |