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

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: 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
Index: tests/mbedtls_tests/ssl_tests.dart
diff --git a/tests/mbedtls_tests/ssl_tests.dart b/tests/mbedtls_tests/ssl_tests.dart
index 23953d865453093b86983e7822addb3f0486578b..0a81dac5353e283c49f584f84fdb8c161b92d8c2 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;
Expect.equals(result, 0);
await stdoutFuture;

Powered by Google App Engine
This is Rietveld 408576698