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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 ['gc_stress == True', { | 94 ['gc_stress == True', { |
95 # Tests taking too long | 95 # Tests taking too long |
96 'fast/js/excessive-comma-usage': [SKIP] | 96 'fast/js/excessive-comma-usage': [SKIP] |
97 }], # 'gc_stress == True' | 97 }], # 'gc_stress == True' |
98 | 98 |
99 ['gc_stress == True and mode == debug', { | 99 ['gc_stress == True and mode == debug', { |
100 # Skip tests that timeout. | 100 # Skip tests that timeout. |
101 }], # 'gc_stress == True and mode == debug' | 101 }], # 'gc_stress == True and mode == debug' |
102 | 102 |
103 ############################################################################## | 103 ############################################################################## |
104 ['ignition == True and msan', { | 104 ['(ignition or ignition_turbofan) and msan', { |
105 # TODO(mythria,4680): Too slow and timeout on ignition. | 105 # TODO(mythria,4680): Too slow and timeout on ignition. |
106 'dfg-double-vote-fuzz': [SKIP], | 106 'dfg-double-vote-fuzz': [SKIP], |
107 'dfg-int-overflow-in-loop': [SKIP], | 107 'dfg-int-overflow-in-loop': [SKIP], |
108 }], # ignition == True and msan | 108 }], # (ignition or ignition_turbofan) and msan |
109 | 109 |
110 ############################################################################## | 110 ############################################################################## |
111 ['gcov_coverage', { | 111 ['gcov_coverage', { |
112 # Tests taking too long or getting too large call stacks. | 112 # Tests taking too long or getting too large call stacks. |
113 'fast/js/excessive-comma-usage': [SKIP], | 113 'fast/js/excessive-comma-usage': [SKIP], |
114 'run-json-stringify': [SKIP], | 114 'run-json-stringify': [SKIP], |
115 }], # 'gcov_coverage' | 115 }], # 'gcov_coverage' |
116 | 116 |
117 ############################################################################## | 117 ############################################################################## |
118 ] | 118 ] |
OLD | NEW |