| 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 [ $compiler == dart2js ] | 5 [ $compiler == dart2js ] |
| 6 math/*: Skip | 6 math/*: Skip |
| 7 mirrors/mirrors_test: Fail # TODO(ahe): I'm working on fixing this. | 7 mirrors/mirrors_test: Fail # TODO(ahe): I'm working on fixing this. |
| 8 mirrors/library_uri_io_test: Skip # Not intended for dart2js as it uses dart:io. | 8 mirrors/library_uri_io_test: Skip # Not intended for dart2js as it uses dart:io. |
| 9 async/run_async3_test: Fail # _enqueueImmediate runs after Timer. http://dartbug
.com/9002 | 9 async/run_async3_test: Fail # _enqueueImmediate runs after Timer. http://dartbug
.com/9002 |
| 10 async/run_async4_test: Pass, Fail # no global exception handler in isolates. htt
p://dartbug.com/9012 | 10 async/run_async4_test: Pass, Fail # no global exception handler in isolates. htt
p://dartbug.com/9012 |
| 11 async/run_async6_test: Fail # global error handling is not supported. http://dar
tbug.com/5958 | 11 async/run_async6_test: Fail # global error handling is not supported. http://dar
tbug.com/5958 |
| 12 | 12 |
| 13 # SIMD is unsupported on dart2js. | 13 # SIMD is unsupported on dart2js. |
| 14 typed_data/float32x4_test: Fail, OK | 14 typed_data/float32x4_test: Fail, OK |
| 15 typed_data/float32x4_list_test: Fail, OK | 15 typed_data/float32x4_list_test: Fail, OK |
| 16 typed_data/float32x4_unbox_phi_test: Fail, OK | 16 typed_data/float32x4_unbox_phi_test: Fail, OK |
| 17 typed_data/float32x4_unbox_regress_test: Fail, OK | 17 typed_data/float32x4_unbox_regress_test: Fail, OK |
| 18 | 18 |
| 19 [ $compiler == dart2js && ($runtime == d8 || $runtime == ie9) ] | 19 [ $compiler == dart2js && ($runtime == d8 || $runtime == ie9) ] |
| 20 typed_data/byte_data_test: Fail, OK # d8/ie9 doesn't support DataView | 20 typed_data/byte_data_test: Fail, OK # d8/ie9 doesn't support DataView |
| 21 | 21 |
| 22 [ $compiler == dart2js && $minified ] | 22 [ $compiler == dart2js && $minified ] |
| 23 mirrors/disable_tree_shaking_test: Fail # Issue 6490 | |
| 24 mirrors/metadata_test: Fail | 23 mirrors/metadata_test: Fail |
| 25 mirrors/mirrors_resolve_fields_test: Fail # Issue 6490 | |
| 26 mirrors/reflect_model_test: Fail # Issue 6490 | 24 mirrors/reflect_model_test: Fail # Issue 6490 |
| 27 mirrors/reflectively_instantiate_uninstantiated_class_test: Fail # Issue 6490 | |
| 28 mirrors/to_string_test: Fail # Issue 6490 | 25 mirrors/to_string_test: Fail # Issue 6490 |
| 29 | 26 |
| 30 [ $csp ] | 27 [ $csp ] |
| 31 mirrors/intercepted_class_test: Fail # Issue 6490 | 28 mirrors/intercepted_class_test: Fail # Issue 6490 |
| 32 mirrors/intercepted_object_test: Fail # Issue 6490 | 29 mirrors/intercepted_object_test: Fail # Issue 6490 |
| 33 mirrors/metadata_test: Fail # Issue 6490 | 30 mirrors/metadata_test: Fail # Issue 6490 |
| 34 mirrors/reflect_model_test: Fail # Issue 6490 | 31 mirrors/reflect_model_test: Fail # Issue 6490 |
| 35 mirrors/reflect_runtime_type_test: Fail # Issue 6490 | 32 mirrors/reflect_runtime_type_test: Fail # Issue 6490 |
| 36 mirrors/reflect_uninstantiated_class_test: Fail # Issue 6490 | 33 mirrors/reflect_uninstantiated_class_test: Fail # Issue 6490 |
| 37 mirrors/superclass_test: Fail # Issue 6490 | 34 mirrors/superclass_test: Fail # Issue 6490 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 125 |
| 129 | 126 |
| 130 [ $arch == arm || $arch == simarm ] | 127 [ $arch == arm || $arch == simarm ] |
| 131 *: Skip | 128 *: Skip |
| 132 | 129 |
| 133 [ $arch == mips ] | 130 [ $arch == mips ] |
| 134 *: Skip | 131 *: Skip |
| 135 | 132 |
| 136 [ $arch == simmips ] | 133 [ $arch == simmips ] |
| 137 *: Skip | 134 *: Skip |
| OLD | NEW |