| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 }], # 'gc_stress == True and mode == debug' | 105 }], # 'gc_stress == True and mode == debug' |
| 106 | 106 |
| 107 ############################################################################## | 107 ############################################################################## |
| 108 ['msan', { | 108 ['msan', { |
| 109 # TODO(mythria,4680): Too slow and timeout on ignition. | 109 # TODO(mythria,4680): Too slow and timeout on ignition. |
| 110 'dfg-double-vote-fuzz': [PASS, NO_IGNITION], | 110 'dfg-double-vote-fuzz': [PASS, NO_IGNITION], |
| 111 'dfg-int-overflow-in-loop': [PASS, NO_IGNITION], | 111 'dfg-int-overflow-in-loop': [PASS, NO_IGNITION], |
| 112 }], # msan | 112 }], # msan |
| 113 | 113 |
| 114 ############################################################################## | 114 ############################################################################## |
| 115 ['(ignition or ignition_turbofan) and msan', { | 115 ['ignition_turbofan and msan', { |
| 116 # TODO(mythria,4680): Too slow and timeout on ignition. | 116 # TODO(mythria,4680): Too slow and timeout on ignition. |
| 117 'dfg-double-vote-fuzz': [SKIP], | 117 'dfg-double-vote-fuzz': [SKIP], |
| 118 'dfg-int-overflow-in-loop': [SKIP], | 118 'dfg-int-overflow-in-loop': [SKIP], |
| 119 }], # (ignition or ignition_turbofan) and msan | 119 }], # ignition_turbofan and msan |
| 120 | 120 |
| 121 ############################################################################## | 121 ############################################################################## |
| 122 ['gcov_coverage', { | 122 ['gcov_coverage', { |
| 123 # Tests taking too long or getting too large call stacks. | 123 # Tests taking too long or getting too large call stacks. |
| 124 'fast/js/excessive-comma-usage': [SKIP], | 124 'fast/js/excessive-comma-usage': [SKIP], |
| 125 'run-json-stringify': [SKIP], | 125 'run-json-stringify': [SKIP], |
| 126 }], # 'gcov_coverage' | 126 }], # 'gcov_coverage' |
| 127 | 127 |
| 128 ############################################################################## | 128 ############################################################################## |
| 129 ] | 129 ] |
| OLD | NEW |