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; |