| 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 /// Modify this file to include more tests. | 5 /// Modify this file to include more tests. |
| 6 library fletch_tests.all_tests; | 6 library dartino_tests.all_tests; |
| 7 | 7 |
| 8 import 'dart:async' show | 8 import 'dart:async' show |
| 9 Completer, | 9 Completer, |
| 10 Future; | 10 Future; |
| 11 | 11 |
| 12 import 'self_tests.dart' as self; | 12 import 'self_tests.dart' as self; |
| 13 | 13 |
| 14 import 'verb_tests.dart' as verbs; | 14 import 'verb_tests.dart' as verbs; |
| 15 | 15 |
| 16 import '../fletchc/incremental/production_mode.dart' as incremental_production; | 16 import '../dartino_compiler/incremental/production_mode.dart' as incremental_pro
duction; |
| 17 | 17 |
| 18 import '../fletchc/incremental/experimental_mode.dart' as | 18 import '../dartino_compiler/incremental/experimental_mode.dart' as |
| 19 incremental_experimental; | 19 incremental_experimental; |
| 20 | 20 |
| 21 import '../fletchc/driver/test_control_stream.dart' as controlStream; | 21 import '../dartino_compiler/driver/test_control_stream.dart' as controlStream; |
| 22 | 22 |
| 23 import '../fletchc/serialize_settings_tests.dart' as serialize_settings_tests; | 23 import '../dartino_compiler/serialize_settings_tests.dart' as serialize_settings
_tests; |
| 24 | 24 |
| 25 import 'zone_helper_tests.dart' as zone_helper; | 25 import 'zone_helper_tests.dart' as zone_helper; |
| 26 | 26 |
| 27 import 'sentence_tests.dart' as sentence_tests; | 27 import 'sentence_tests.dart' as sentence_tests; |
| 28 | 28 |
| 29 import 'message_tests.dart' as message_tests; | 29 import 'message_tests.dart' as message_tests; |
| 30 | 30 |
| 31 import 'multiprogram_tests.dart' as multiprogram_tests; | 31 import 'multiprogram_tests.dart' as multiprogram_tests; |
| 32 | 32 |
| 33 import 'snapshot_stacktrace_tests.dart' as snapshot_stacktrace_tests; | 33 import 'snapshot_stacktrace_tests.dart' as snapshot_stacktrace_tests; |
| 34 | 34 |
| 35 import '../service_tests/service_tests.dart' as service_tests; | 35 import '../service_tests/service_tests.dart' as service_tests; |
| 36 | 36 |
| 37 import '../servicec/servicec_tests.dart' as servicec_tests; | 37 import '../servicec/servicec_tests.dart' as servicec_tests; |
| 38 | 38 |
| 39 import '../fletchc/run.dart' as run; | 39 import '../dartino_compiler/run.dart' as run; |
| 40 | 40 |
| 41 import '../fletchc/driver/test_vm_connection.dart' as test_vm_connection; | 41 import '../dartino_compiler/driver/test_vm_connection.dart' as test_vm_connectio
n; |
| 42 | 42 |
| 43 import '../debugger/debugger_tests.dart' as debugger_tests; | 43 import '../debugger/debugger_tests.dart' as debugger_tests; |
| 44 | 44 |
| 45 import '../flash_sd_card_tests/flash_sd_card_tests.dart' as flash_sd_card_tests; | 45 import '../flash_sd_card_tests/flash_sd_card_tests.dart' as flash_sd_card_tests; |
| 46 | 46 |
| 47 import '../mbedtls_tests/ssl_tests.dart' as ssl_tests; | 47 import '../mbedtls_tests/ssl_tests.dart' as ssl_tests; |
| 48 | 48 |
| 49 import '../../pkg/sdk_services/test/service_tests.dart' as sdk_service_tests; | 49 import '../../pkg/sdk_services/test/service_tests.dart' as sdk_service_tests; |
| 50 | 50 |
| 51 import '../mdns_tests/mdns_tests.dart' as mdns_tests; | 51 import '../mdns_tests/mdns_tests.dart' as mdns_tests; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 // package and pull it in through third_party. | 148 // package and pull it in through third_party. |
| 149 'power_management_tests/*': power_management_tests.listTests, | 149 'power_management_tests/*': power_management_tests.listTests, |
| 150 | 150 |
| 151 // Test for the golem performance tracking infrastructure. | 151 // Test for the golem performance tracking infrastructure. |
| 152 // If this test breaks you probably need to update the golem performance | 152 // If this test breaks you probably need to update the golem performance |
| 153 // tracking infrastructure as well. | 153 // tracking infrastructure as well. |
| 154 'golem_tests': golem_tests.main, | 154 'golem_tests': golem_tests.main, |
| 155 | 155 |
| 156 'version_tests': version_tests.main, | 156 'version_tests': version_tests.main, |
| 157 }; | 157 }; |
| OLD | NEW |