| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 | 2 |
| 3 # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 3 # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 4 # for details. All rights reserved. Use of this source code is governed by a | 4 # for details. All rights reserved. Use of this source code is governed by a |
| 5 # BSD-style license that can be found in the LICENSE file. | 5 # BSD-style license that can be found in the LICENSE file. |
| 6 | 6 |
| 7 # Fast fail the script on failures. | 7 # Fast fail the script on failures. |
| 8 set -e | 8 set -e |
| 9 | 9 |
| 10 # Run the command-line tests. | 10 # Run the un-transformed command-line tests. |
| 11 # TODO(jakemac): Add back once http://dartbug.com/22592 is fixed. | 11 # TODO(jakemac): Add back once http://dartbug.com/22592 is fixed. |
| 12 # dart test/deferred_library_test.dart | 12 # dart test/deferred_library_test.dart |
| 13 dart test/init_method_test.dart | 13 dart test/init_method_test.dart |
| 14 dart test/initializer_custom_filter_test.dart | 14 dart test/initializer_custom_filter_test.dart |
| 15 dart test/initializer_cycle_error_test.dart | 15 dart test/initializer_cycle_error_test.dart |
| 16 dart test/initializer_test.dart | 16 dart test/initializer_test.dart |
| 17 dart test/initializer_parts_test.dart |
| 17 dart test/initializer_type_filter_test.dart | 18 dart test/initializer_type_filter_test.dart |
| 18 dart test/transformer_test.dart | 19 dart test/transformer_test.dart |
| 20 |
| 21 pub build test --mode=debug |
| 22 |
| 23 # Run the transformed command-line tests. |
| 24 # TODO(jakemac): Add back once initialize supports deferred libraries. |
| 25 # dart test/deferred_library_test.dart |
| 26 dart build/test/init_method_test.initialize.dart |
| 27 dart build/test/initializer_custom_filter_test.initialize.dart |
| 28 dart build/test/initializer_test.initialize.dart |
| 29 dart build/test/initializer_parts_test.initialize.dart |
| 30 dart build/test/initializer_type_filter_test.initialize.dart |
| OLD | NEW |