| Index: tests/standalone/io/skipping_dart2js_compilations_test.dart
|
| diff --git a/tests/standalone/io/skipping_dart2js_compilations_test.dart b/tests/standalone/io/skipping_dart2js_compilations_test.dart
|
| index 992f4280f7aeb982a7bfe86a9eb46b9efa0ed2e5..3f22a8461d3fffe0c6be61cf0cd4c1b9b52922e5 100644
|
| --- a/tests/standalone/io/skipping_dart2js_compilations_test.dart
|
| +++ b/tests/standalone/io/skipping_dart2js_compilations_test.dart
|
| @@ -22,7 +22,6 @@ import 'dart:async';
|
| import 'dart:io';
|
| import '../../../tools/testing/dart/options.dart' as options;
|
| import '../../../tools/testing/dart/path.dart';
|
| -import '../../../tools/testing/dart/test_suite.dart' as suite;
|
| import '../../../tools/testing/dart/test_runner.dart' as runner;
|
| import '../../../tools/testing/dart/utils.dart';
|
|
|
| @@ -58,9 +57,8 @@ class FileUtils {
|
| }
|
| if (createJsDeps) {
|
| testJsDeps = _createFile(testJsDepsFilePath);
|
| - var path = suite.TestUtils
|
| - .absolutePath(new Path(tempDir.path))
|
| - .append("test.dart");
|
| + var path =
|
| + TestUtils.absolutePath(new Path(tempDir.path)).append("test.dart");
|
| _writeToFile(testJsDeps, "file://$path");
|
| }
|
| }
|
| @@ -81,27 +79,25 @@ class FileUtils {
|
| }
|
|
|
| Path get scriptOutputPath {
|
| - return suite.TestUtils.absolutePath(
|
| + return TestUtils.absolutePath(
|
| new Path(tempDir.path).append('created_if_command_did_run.txt'));
|
| }
|
|
|
| Path get testDartFilePath {
|
| - return suite.TestUtils
|
| - .absolutePath(new Path(tempDir.path).append('test.dart'));
|
| + return TestUtils.absolutePath(new Path(tempDir.path).append('test.dart'));
|
| }
|
|
|
| Path get testJsFilePath {
|
| - return suite.TestUtils
|
| - .absolutePath(new Path(tempDir.path).append('test.js'));
|
| + return TestUtils.absolutePath(new Path(tempDir.path).append('test.js'));
|
| }
|
|
|
| Path get testJsDepsFilePath {
|
| - return suite.TestUtils
|
| + return TestUtils
|
| .absolutePath(new Path(tempDir.path).append('test.js.deps'));
|
| }
|
|
|
| Path get testSnapshotFilePath {
|
| - return suite.TestUtils
|
| + return TestUtils
|
| .absolutePath(new Path(tempDir.path).append('test_dart2js.snapshot'));
|
| }
|
|
|
| @@ -169,7 +165,7 @@ runner.Command makeCompilationCommand(String testName, FileUtils fileUtils) {
|
|
|
| void main() {
|
| // This script is in [sdk]/tests/standalone/io.
|
| - suite.TestUtils.setDartDirUri(Platform.script.resolve('../../..'));
|
| + TestUtils.setDartDirUri(Platform.script.resolve('../../..'));
|
|
|
| var fs_noTestJs = new FileUtils(
|
| createJs: false,
|
|
|