| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 # These tests are expected to crash on all platforms. | 5 # These tests are expected to crash on all platforms. |
| 6 cc/ArrayNew_Overflow_Crash: Crash | 6 cc/ArrayNew_Overflow_Crash: Crash |
| 7 cc/AllocGeneric_Overflow: Crash | 7 cc/AllocGeneric_Overflow: Crash |
| 8 | 8 |
| 9 cc/SNPrint_BadArgs: Skip | 9 cc/SNPrint_BadArgs: Skip |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 dart/byte_array_test: Skip # compilers not aware of byte arrays | 33 dart/byte_array_test: Skip # compilers not aware of byte arrays |
| 34 dart/byte_array_optimized_test: Skip # compilers not aware of byte arrays | 34 dart/byte_array_optimized_test: Skip # compilers not aware of byte arrays |
| 35 dart/simd128float32_array_test: Skip # compilers not aware of Simd128 | 35 dart/simd128float32_array_test: Skip # compilers not aware of Simd128 |
| 36 dart/simd128float32_test: Skip # compilers not aware of Simd128 | 36 dart/simd128float32_test: Skip # compilers not aware of Simd128 |
| 37 dart/isolate_unhandled*: Skip | 37 dart/isolate_unhandled*: Skip |
| 38 | 38 |
| 39 [ $compiler == dart2js ] | 39 [ $compiler == dart2js ] |
| 40 # The source positions do not match with dart2js. | 40 # The source positions do not match with dart2js. |
| 41 dart/optimized_stacktrace_test: Fail | 41 dart/optimized_stacktrace_test: Fail |
| 42 | 42 |
| 43 [ $compiler == dart2js && $minified ] | 43 [ $compiler == dart2js ] |
| 44 # Methods in stack traces are renamed. | 44 # Methods can be missing in dart2js stack traces due to inlining. Also when |
| 45 dart/inline_stack_frame_test: Fail # Issue 7953. | 45 # minifying they can be renamed, which is issue 7953. |
| 46 dart/inline_stack_frame_test: Fail |
| 46 | 47 |
| 47 [ $runtime == ff || $runtime == ie9 ] | 48 [ $runtime == ff || $runtime == ie9 ] |
| 48 dart/inline_stack_frame_test: Skip | 49 dart/inline_stack_frame_test: Skip |
| 49 | 50 |
| 50 [ $runtime == safari ] | 51 [ $runtime == safari ] |
| 51 dart/inline_stack_frame_test: Fail # Issue: 7414 | 52 dart/inline_stack_frame_test: Fail # Issue: 7414 |
| 52 | 53 |
| 53 [ $compiler == dart2dart ] | 54 [ $compiler == dart2dart ] |
| 54 # Skip until we stabilize language tests. | 55 # Skip until we stabilize language tests. |
| 55 *: Skip | 56 *: Skip |
| (...skipping 16 matching lines...) Expand all Loading... |
| 72 cc/FrameLookup: Skip | 73 cc/FrameLookup: Skip |
| 73 cc/UseDartApi: Skip | 74 cc/UseDartApi: Skip |
| 74 # Tests needing Dart execution. | 75 # Tests needing Dart execution. |
| 75 dart/*: Skip | 76 dart/*: Skip |
| 76 | 77 |
| 77 # TODO(ajohnsen): Fix this as part of library changes. | 78 # TODO(ajohnsen): Fix this as part of library changes. |
| 78 [ $compiler == none ] | 79 [ $compiler == none ] |
| 79 cc/CustomIsolates: Skip # Bug 6890 | 80 cc/CustomIsolates: Skip # Bug 6890 |
| 80 cc/NewNativePort: Skip # Bug 6890 | 81 cc/NewNativePort: Skip # Bug 6890 |
| 81 cc/RunLoop_ExceptionParent: Skip # Bug 6890 | 82 cc/RunLoop_ExceptionParent: Skip # Bug 6890 |
| OLD | NEW |