| 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 dartino_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; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 import 'zone_helper_tests.dart' as zone_helper; | 27 import 'zone_helper_tests.dart' as zone_helper; |
| 28 | 28 |
| 29 import 'sentence_tests.dart' as sentence_tests; | 29 import 'sentence_tests.dart' as sentence_tests; |
| 30 | 30 |
| 31 import 'message_tests.dart' as message_tests; | 31 import 'message_tests.dart' as message_tests; |
| 32 | 32 |
| 33 import 'multiprogram_tests.dart' as multiprogram_tests; | 33 import 'multiprogram_tests.dart' as multiprogram_tests; |
| 34 | 34 |
| 35 import 'snapshot_stacktrace_tests.dart' as snapshot_stacktrace_tests; | 35 import 'snapshot_stacktrace_tests.dart' as snapshot_stacktrace_tests; |
| 36 | 36 |
| 37 import '../service_tests/service_tests.dart' as service_tests; | |
| 38 | |
| 39 import '../servicec/servicec_tests.dart' as servicec_tests; | |
| 40 | |
| 41 import '../dartino_compiler/run.dart' as run; | 37 import '../dartino_compiler/run.dart' as run; |
| 42 | 38 |
| 43 import '../dartino_compiler/driver/test_vm_connection.dart' as | 39 import '../dartino_compiler/driver/test_vm_connection.dart' as |
| 44 test_vm_connection; | 40 test_vm_connection; |
| 45 | 41 |
| 46 import '../debugger/debugger_tests.dart' as debugger_tests; | 42 import '../debugger/debugger_tests.dart' as debugger_tests; |
| 47 | 43 |
| 48 import '../flash_sd_card_tests/flash_sd_card_tests.dart' as flash_sd_card_tests; | 44 import '../flash_sd_card_tests/flash_sd_card_tests.dart' as flash_sd_card_tests; |
| 49 | 45 |
| 50 import '../mbedtls_tests/ssl_tests.dart' as ssl_tests; | 46 import '../mbedtls_tests/ssl_tests.dart' as ssl_tests; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 80 const Map<String, NoArgFuture> TESTS = const <String, NoArgFuture>{ | 76 const Map<String, NoArgFuture> TESTS = const <String, NoArgFuture>{ |
| 81 'self/testSleepForThreeSeconds': self.testSleepForThreeSeconds, | 77 'self/testSleepForThreeSeconds': self.testSleepForThreeSeconds, |
| 82 'self/testAlwaysFails': self.testAlwaysFails, | 78 'self/testAlwaysFails': self.testAlwaysFails, |
| 83 'self/testNeverCompletes': self.testNeverCompletes, | 79 'self/testNeverCompletes': self.testNeverCompletes, |
| 84 'self/testMessages': self.testMessages, | 80 'self/testMessages': self.testMessages, |
| 85 'self/testPrint': self.testPrint, | 81 'self/testPrint': self.testPrint, |
| 86 | 82 |
| 87 'verbs/helpTextFormat': verbs.testHelpTextFormatCompliance, | 83 'verbs/helpTextFormat': verbs.testHelpTextFormatCompliance, |
| 88 | 84 |
| 89 // Slow tests, should run early so we don't wait for them. | 85 // Slow tests, should run early so we don't wait for them. |
| 90 'service_tests/*': service_tests.listTests, | |
| 91 | |
| 92 // Slow tests, should run early so we don't wait for them | |
| 93 'servicec/*': servicec_tests.listTests, | |
| 94 | |
| 95 // Slow tests, should run early so we don't wait for them. | |
| 96 'incremental/production/*': incremental_production.list, | 86 'incremental/production/*': incremental_production.list, |
| 97 'incremental/experimental/*': incremental_experimental.list, | 87 'incremental/experimental/*': incremental_experimental.list, |
| 98 | 88 |
| 99 // Slow tests, should run early so we don't wait for them. | 89 // Slow tests, should run early so we don't wait for them. |
| 100 'debugger/*': debugger_tests.listTests, | 90 'debugger/*': debugger_tests.listTests, |
| 101 | 91 |
| 102 // Slow tests, should run early so we don't wait for them. | 92 // Slow tests, should run early so we don't wait for them. |
| 103 'agent_tests/*': agent_tests.listTests, | 93 'agent_tests/*': agent_tests.listTests, |
| 104 | 94 |
| 105 // Slow tests, should run early so we don't wait for them. | 95 // Slow tests, should run early so we don't wait for them. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 // package and pull it in through third_party. | 141 // package and pull it in through third_party. |
| 152 'power_management_tests/*': power_management_tests.listTests, | 142 'power_management_tests/*': power_management_tests.listTests, |
| 153 | 143 |
| 154 // Test for the golem performance tracking infrastructure. | 144 // Test for the golem performance tracking infrastructure. |
| 155 // If this test breaks you probably need to update the golem performance | 145 // If this test breaks you probably need to update the golem performance |
| 156 // tracking infrastructure as well. | 146 // tracking infrastructure as well. |
| 157 'golem_tests': golem_tests.main, | 147 'golem_tests': golem_tests.main, |
| 158 | 148 |
| 159 'version_tests': version_tests.main, | 149 'version_tests': version_tests.main, |
| 160 }; | 150 }; |
| OLD | NEW |