| OLD | NEW |
| 1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Dartino 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.md file. | 3 # BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 self/testAlwaysFails: Fail, OK # This is a test of this suite, failure is expect
ed. | 5 self/testAlwaysFails: Fail, OK # This is a test of this suite, failure is expect
ed. |
| 6 zone_helper/testAlwaysFails: Fail, OK # This is a test of this suite, failure is
expected. | 6 zone_helper/testAlwaysFails: Fail, OK # This is a test of this suite, failure is
expected. |
| 7 self/testNeverCompletes: Timeout # This is a test of this suite, timeout is expe
cted. | 7 self/testNeverCompletes: Timeout # This is a test of this suite, timeout is expe
cted. |
| 8 multiprogram_tests/should_fail: Fail, OK # This is a test of this suite, failure
is expected. | 8 multiprogram_tests/should_fail: Fail, OK # This is a test of this suite, failure
is expected. |
| 9 | 9 |
| 10 # Stored closures not updated | 10 # Stored closures not updated |
| 11 incremental/*/stored_closure: Fail | 11 incremental/*/stored_closure: Fail |
| 12 incremental/*/stored_instance_tearoff: Fail | 12 incremental/*/stored_instance_tearoff: Fail |
| 13 | 13 |
| 14 # Missing support for multiple libraries | 14 # Missing support for multiple libraries |
| 15 incremental/*/multiple_libraries: Fail | 15 incremental/*/multiple_libraries: Fail |
| 16 | 16 |
| 17 # Received PushFromMap command which referes to a non-existent map entry | 17 # Received PushFromMap command which referes to a non-existent map entry |
| 18 incremental/*/same_tokens_variant: Fail | 18 incremental/*/same_tokens_variant: Fail |
| 19 | 19 |
| 20 # Update to existing class not correctly detected (we end up trying to modify a | 20 # Update to existing class not correctly detected (we end up trying to modify a |
| 21 # new class -> should not happen). | 21 # new class -> should not happen). |
| 22 incremental/*/compile_time_error_hides_field: Fail | 22 incremental/*/compile_time_error_hides_field: Fail |
| 23 | 23 |
| 24 # Bad 'field' count on FletchPatchClassBuilder (does not contain new fields). | 24 # Bad 'field' count on DartinoPatchClassBuilder (does not contain new fields). |
| 25 incremental/*/add_field_and_remove_subclass: Fail | 25 incremental/*/add_field_and_remove_subclass: Fail |
| 26 | 26 |
| 27 # Most things don't work in production mode yet. | 27 # Most things don't work in production mode yet. |
| 28 incremental/production/add_class: Fail | 28 incremental/production/add_class: Fail |
| 29 incremental/production/add_instance_field: Fail | 29 incremental/production/add_instance_field: Fail |
| 30 incremental/production/add_instance_method: Fail | 30 incremental/production/add_instance_method: Fail |
| 31 incremental/production/add_static_method: Fail | 31 incremental/production/add_static_method: Fail |
| 32 incremental/production/add_top_level_const_field: Fail | 32 incremental/production/add_top_level_const_field: Fail |
| 33 incremental/production/add_top_level_method: Fail | 33 incremental/production/add_top_level_method: Fail |
| 34 incremental/production/bad_diagnostics: Fail | 34 incremental/production/bad_diagnostics: Fail |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 [ $arch == xarm ] | 119 [ $arch == xarm ] |
| 120 | 120 |
| 121 mdns_tests/*: Skip # The native extension is not compiled for ARM. | 121 mdns_tests/*: Skip # The native extension is not compiled for ARM. |
| 122 power_management_tests/*: Skip # The native extension is not compiled for ARM. | 122 power_management_tests/*: Skip # The native extension is not compiled for ARM. |
| 123 flash_sd_card_tests/*: Skip # The native extension is not compiled for ARM. | 123 flash_sd_card_tests/*: Skip # The native extension is not compiled for ARM. |
| 124 sdk_service_tests/*: Skip # The native extension is not compiled for ARM. | 124 sdk_service_tests/*: Skip # The native extension is not compiled for ARM. |
| 125 | 125 |
| 126 incremental/experimental/program_gc_with_processes: Pass, Fail # Issue 389. | 126 incremental/experimental/program_gc_with_processes: Pass, Fail # Issue 389. |
| 127 | 127 |
| 128 [ $arch == x64 && $asan] | 128 [ $arch == x64 && $asan] |
| 129 service_tests/simple_todo: Pass, Fail # Issue https://github.com/dart-lang/fletc
h/issues/57 | 129 service_tests/simple_todo: Pass, Fail # Issue https://github.com/dart-lang/darti
no/issues/57 |
| OLD | NEW |