Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: packages/initialize/tool/all_tests.sh

Issue 3014633002: Roll to pickup pool changes (Closed)
Patch Set: Created 3 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packages/initialize/test/transformer_test.dart ('k') | packages/matcher/.analysis_options » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 dartanalyzer --fatal-warnings lib/initialize.dart lib/transformer.dart
11
10 # Run the un-transformed command-line tests. 12 # Run the un-transformed command-line tests.
11 dart test/deferred_library_test.dart 13 dart test/deferred_library_test.dart
12 dart test/init_method_test.dart 14 dart test/init_method_test.dart
13 dart test/initializer_custom_filter_test.dart 15 dart test/initializer_custom_filter_test.dart
14 dart test/initializer_cycle_error_test.dart 16 dart test/initializer_cycle_error_test.dart
15 dart test/initializer_from_test.dart 17 dart test/initializer_from_test.dart
16 dart test/initializer_parts_test.dart 18 dart test/initializer_parts_test.dart
17 dart test/initializer_super_test.dart 19 dart test/initializer_super_test.dart
18 dart test/initializer_test.dart 20 dart test/initializer_test.dart
19 dart test/initializer_type_filter_test.dart 21 dart test/initializer_type_filter_test.dart
20 dart test/transformer_test.dart 22 dart test/transformer_test.dart
21 23
22 pub build test --mode=debug 24 pub build test --mode=debug
23 25
24 # Run the transformed command-line tests. 26 # Run the transformed command-line tests.
25 # TODO(jakemac): Add back once initialize supports deferred libraries. 27 # TODO(jakemac): Add back once initialize supports deferred libraries.
26 # dart test/deferred_library_test.dart 28 # dart test/deferred_library_test.dart
27 dart build/test/init_method_test.initialize.dart 29 dart build/test/init_method_test.initialize.dart
28 dart build/test/initializer_custom_filter_test.initialize.dart 30 dart build/test/initializer_custom_filter_test.initialize.dart
29 dart build/test/initializer_test.initialize.dart 31 dart build/test/initializer_test.initialize.dart
30 dart build/test/initializer_parts_test.initialize.dart 32 dart build/test/initializer_parts_test.initialize.dart
31 dart build/test/initializer_super_test.initialize.dart 33 dart build/test/initializer_super_test.initialize.dart
32 dart build/test/initializer_type_filter_test.initialize.dart 34 dart build/test/initializer_type_filter_test.initialize.dart
OLDNEW
« no previous file with comments | « packages/initialize/test/transformer_test.dart ('k') | packages/matcher/.analysis_options » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698