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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 ['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 |
| 113 # TODO(mythria,4680): Too slow and timeout on ignition. |
| 114 'virtual/ignition_turbofan/dfg-double-vote-fuzz': [SKIP], |
| 115 'virtual/ignition_turbofan/dfg-int-overflow-in-loop': [SKIP], |
112 }], # msan | 116 }], # msan |
113 | 117 |
114 ############################################################################## | 118 ############################################################################## |
115 ['ignition_turbofan and msan', { | |
116 # TODO(mythria,4680): Too slow and timeout on ignition. | |
117 'dfg-double-vote-fuzz': [SKIP], | |
118 'dfg-int-overflow-in-loop': [SKIP], | |
119 }], # ignition_turbofan and msan | |
120 | |
121 ############################################################################## | |
122 ['gcov_coverage', { | 119 ['gcov_coverage', { |
123 # Tests taking too long or getting too large call stacks. | 120 # Tests taking too long or getting too large call stacks. |
124 'fast/js/excessive-comma-usage': [SKIP], | 121 'fast/js/excessive-comma-usage': [SKIP], |
125 'run-json-stringify': [SKIP], | 122 'run-json-stringify': [SKIP], |
126 }], # 'gcov_coverage' | 123 }], # 'gcov_coverage' |
127 | 124 |
128 ############################################################################## | 125 ############################################################################## |
129 ] | 126 ] |
OLD | NEW |