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

Unified Diff: packages/initialize/tool/all_tests.sh

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/initialize/test_package/pubspec.yaml ('k') | packages/initialize/tool/rename_build_outputs.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/initialize/tool/all_tests.sh
diff --git a/packages/initialize/tool/all_tests.sh b/packages/initialize/tool/all_tests.sh
new file mode 100755
index 0000000000000000000000000000000000000000..99e42d549f8b17c81d796561ef1df6ffcf101ebf
--- /dev/null
+++ b/packages/initialize/tool/all_tests.sh
@@ -0,0 +1,33 @@
+#!/bin/bash
+
+# Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+# for details. All rights reserved. Use of this source code is governed by a
+# BSD-style license that can be found in the LICENSE file.
+
+# Fast fail the script on failures.
+set -e
+
+# Run the un-transformed command-line tests.
+# TODO(jakemac): Add back once http://dartbug.com/22592 is fixed.
+# dart test/deferred_library_test.dart
+dart test/init_method_test.dart
+dart test/initializer_custom_filter_test.dart
+dart test/initializer_cycle_error_test.dart
+dart test/initializer_from_test.dart
+dart test/initializer_parts_test.dart
+dart test/initializer_super_test.dart
+dart test/initializer_test.dart
+dart test/initializer_type_filter_test.dart
+dart test/transformer_test.dart
+
+pub build test --mode=debug
+
+# Run the transformed command-line tests.
+# TODO(jakemac): Add back once initialize supports deferred libraries.
+# dart test/deferred_library_test.dart
+dart build/test/init_method_test.initialize.dart
+dart build/test/initializer_custom_filter_test.initialize.dart
+dart build/test/initializer_test.initialize.dart
+dart build/test/initializer_parts_test.initialize.dart
+dart build/test/initializer_super_test.initialize.dart
+dart build/test/initializer_type_filter_test.initialize.dart
« no previous file with comments | « packages/initialize/test_package/pubspec.yaml ('k') | packages/initialize/tool/rename_build_outputs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698