| Index: tests/dartino_tests/snapshot_stacktrace_tests.dart
|
| diff --git a/tests/fletch_tests/snapshot_stacktrace_tests.dart b/tests/dartino_tests/snapshot_stacktrace_tests.dart
|
| similarity index 93%
|
| rename from tests/fletch_tests/snapshot_stacktrace_tests.dart
|
| rename to tests/dartino_tests/snapshot_stacktrace_tests.dart
|
| index 9d4590c1b8384845b5b40ead02822e3ae71d5715..ffc9994572a926ef3091ed2a052ab18e684ce03a 100644
|
| --- a/tests/fletch_tests/snapshot_stacktrace_tests.dart
|
| +++ b/tests/dartino_tests/snapshot_stacktrace_tests.dart
|
| @@ -19,10 +19,10 @@ import 'dart:convert' show
|
| import 'package:expect/expect.dart' show
|
| Expect;
|
|
|
| -import '../fletchc/run.dart' show
|
| +import '../dartino_compiler/run.dart' show
|
| export;
|
|
|
| -import 'package:fletchc/program_info.dart' as program_info;
|
| +import 'package:dartino_compiler/program_info.dart' as program_info;
|
|
|
| import 'utils.dart' show
|
| withTempDirectory;
|
| @@ -36,7 +36,7 @@ const String buildArch =
|
| const String buildSystem =
|
| const String.fromEnvironment('test.dart.build-system');
|
|
|
| -final String fletchVM = '$buildDirectory/fletch-vm';
|
| +final String dartinoVM = '$buildDirectory/dartino-vm';
|
|
|
| typedef Future NoArgFuture();
|
|
|
| @@ -67,7 +67,7 @@ Future runTest(String testName, bool write_golden_files) {
|
| testFilename(testName), snapshotFilename, binaryProgramInfo: true);
|
|
|
| // Part 2: Run VM.
|
| - ProcessResult result = await Process.run(fletchVM, [snapshotFilename]);
|
| + ProcessResult result = await Process.run(dartinoVM, [snapshotFilename]);
|
| String expectationContent =
|
| await new File(testExpectationFilename(testName)).readAsString();
|
|
|
|
|