| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 ['gc_stress == True', { | 98 ['gc_stress == True', { |
| 99 # Tests taking too long | 99 # Tests taking too long |
| 100 'fast/js/excessive-comma-usage': [SKIP] | 100 'fast/js/excessive-comma-usage': [SKIP] |
| 101 }], # 'gc_stress == True' | 101 }], # 'gc_stress == True' |
| 102 | 102 |
| 103 ['gc_stress == True and mode == debug', { | 103 ['gc_stress == True and mode == debug', { |
| 104 # Skip tests that timeout. | 104 # Skip tests that timeout. |
| 105 }], # 'gc_stress == True and mode == debug' | 105 }], # 'gc_stress == True and mode == debug' |
| 106 | 106 |
| 107 ############################################################################## | 107 ############################################################################## |
| 108 ['msan', { | 108 ['variant == ignition and 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': [SKIP], |
| 111 'dfg-int-overflow-in-loop': [PASS, NO_IGNITION], | 111 'dfg-int-overflow-in-loop': [SKIP], |
| 112 }], # msan | 112 }], # variant == ignition and msan |
| 113 | 113 |
| 114 ############################################################################## | 114 ############################################################################## |
| 115 ['variant == ignition_turbofan and msan', { | 115 ['variant == 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 }], # variant == ignition_turbofan and msan | 119 }], # variant == 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 |