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

Unified Diff: tests/fletch_tests/test_suite_consumer.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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 | « tests/fletch_tests/snapshot_stacktrace_tests.dart ('k') | tests/fletch_tests/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/fletch_tests/test_suite_consumer.dart
diff --git a/tests/fletch_tests/test_suite_consumer.dart b/tests/fletch_tests/test_suite_consumer.dart
deleted file mode 100644
index 07e688914bf3346dfb3660d2a88c7708e8aab682..0000000000000000000000000000000000000000
--- a/tests/fletch_tests/test_suite_consumer.dart
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2015, the Dartino 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.md file.
-
-/// Command-line utility for helping testing fletch_test_suite.dart outside
-/// test.py.
-///
-/// Example usage:
-///
-/// Create a file with messages, for example, messages.txt:
-///
-/// {"type":"ListTests"}
-/// {"type":"RunTest","name":"test1"}
-/// {"type":"RunTest","name":"test2"}
-///
-/// Then run this command:
-///
-/// cat messages.txt | \
-/// ./third_party/bin/$OS/dart --packages=.packages/ \
-/// tests/fletch_tests/fletch_test_suite.dart | \
-/// ./third_party/bin/$OS/dart --packages=.packages \
-/// tests/fletch_tests/test_suite_consumer.dart
-library fletch_tests.test_suite_consumer;
-
-import 'dart:io' show
- stdin;
-
-import 'fletch_test_suite.dart' show
- utf8Lines;
-
-import 'messages.dart' show
- Message,
- messageTransformer;
-
-main() async {
- await for(Message message in utf8Lines(stdin).transform(messageTransformer)) {
- print(message);
- }
-}
« no previous file with comments | « tests/fletch_tests/snapshot_stacktrace_tests.dart ('k') | tests/fletch_tests/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698