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 30 matching lines...) Expand all Loading... | |
41 'reentrant-caching': [SKIP], | 41 'reentrant-caching': [SKIP], |
42 'sort-large-array': [SKIP], | 42 'sort-large-array': [SKIP], |
43 }], # 'mode == debug' | 43 }], # 'mode == debug' |
44 ['simulator', { | 44 ['simulator', { |
45 'function-apply-aliased': [SKIP], | 45 'function-apply-aliased': [SKIP], |
46 }], # 'simulator' | 46 }], # 'simulator' |
47 ['arch == arm64 and simulator_run == True', { | 47 ['arch == arm64 and simulator_run == True', { |
48 'dfg-int-overflow-in-loop': [SKIP], | 48 'dfg-int-overflow-in-loop': [SKIP], |
49 }], # 'arch == arm64 and simulator_run == True' | 49 }], # 'arch == arm64 and simulator_run == True' |
50 ] | 50 ] |
51 | |
52 ############################################################################## | |
53 ['gc_stress == True', { | |
54 # Tests taking too long | |
55 'fastt/js/excessive-comma-usage': [SKIP] | |
Michael Achenbach
2014/07/22 13:17:38
one t
Hannes Payer (out of office)
2014/07/22 13:18:18
Done.
| |
56 }], # 'gc_stress == True' | |
57 | |
58 ############################################################################## | |
OLD | NEW |