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

Unified Diff: tests/mbedtls_tests/ssl_tests.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/mbedtls_tests/ssl_client.dart ('k') | tests/multiprogram_tests/unhandled_signal.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/mbedtls_tests/ssl_tests.dart
diff --git a/tests/mbedtls_tests/ssl_tests.dart b/tests/mbedtls_tests/ssl_tests.dart
index 7b882b10083972443d9b5f063cf76f5ecd16f0ae..eab2e3ab34ce9c27280238a64e91f0e2573cd2a6 100644
--- a/tests/mbedtls_tests/ssl_tests.dart
+++ b/tests/mbedtls_tests/ssl_tests.dart
@@ -1,11 +1,11 @@
-// Copyright (c) 2016, the Fletch project authors. Please see the AUTHORS file
+// Copyright (c) 2016, 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.
import 'dart:async';
import 'dart:io';
import 'package:expect/expect.dart';
-import '../fletchc/run.dart' show
+import '../dartino_compiler/run.dart' show
export;
import 'dart:convert' show
LineSplitter,
@@ -18,7 +18,7 @@ main() async {
typedef Future NoArgFuture();
-const String fletchVmExecutable = const String.fromEnvironment('fletch-vm');
+const String dartinoVmExecutable = const String.fromEnvironment('dartino-vm');
const String testsDir = const String.fromEnvironment('tests-dir');
const String buildDirectory =
const String.fromEnvironment('test.dart.build-dir');
@@ -56,15 +56,15 @@ Future testServerClient() async {
};
await export(client.toFilePath(), snapshot, constants:environment);
- var process = await Process.start(fletchVmExecutable, [snapshot]);
+ var process = await Process.start(dartinoVmExecutable, [snapshot]);
// We print this, in the normal case there is no output, but in case of error
// we actually want it all.
var stdoutFuture = process.stdout.transform(UTF8.decoder)
.transform(new LineSplitter())
- .listen((s) => print('fletch-vm(stdout): $s')).asFuture();
+ .listen((s) => print('dartino-vm(stdout): $s')).asFuture();
var stderrFuture = process.stderr.transform(UTF8.decoder)
.transform(new LineSplitter())
- .listen((s) => print('fletch-vm(stderr): $s')).asFuture();
+ .listen((s) => print('dartino-vm(stderr): $s')).asFuture();
var result = await process.exitCode;
await server.close();
await stdoutFuture;
« no previous file with comments | « tests/mbedtls_tests/ssl_client.dart ('k') | tests/multiprogram_tests/unhandled_signal.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698