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

Unified Diff: tools/testing/dart/test_runner.dart

Issue 2640063002: Fix android precompilation builders after testing script refactoring (Closed)
Patch Set: Created 3 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 | « tools/testing/dart/runtime_configuration.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index 6e916ecdb45315bc6755bf08d3c5a3c449aa3a77..ac80516b978b71fcb18f1862368ef165fcd78661 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -22,14 +22,15 @@ import "dart:math" as math;
import 'package:yaml/yaml.dart';
import 'android.dart';
-import 'dependency_graph.dart' as dgraph;
import "browser_controller.dart";
+import 'dependency_graph.dart' as dgraph;
import "path.dart";
+import 'record_and_replay.dart';
+import "runtime_configuration.dart";
import "status_file_parser.dart";
import "test_progress.dart";
import "test_suite.dart";
import "utils.dart";
-import 'record_and_replay.dart';
const int CRASHING_BROWSER_EXITCODE = -10;
const int SLOW_TIMEOUT_MULTIPLIER = 4;
@@ -2700,8 +2701,8 @@ class CommandExecutorImpl implements CommandExecutor {
var processTest = command.processTestFilename;
var testdir = command.precompiledTestDirectory;
var arguments = command.arguments;
- var devicedir = '/data/local/tmp/precompilation-testing';
- var deviceTestDir = '/data/local/tmp/precompilation-testing/test';
+ var devicedir = DartPrecompiledAdbRuntimeConfiguration.DeviceDir;
+ var deviceTestDir = DartPrecompiledAdbRuntimeConfiguration.DeviceTestDir;
// We copy all the files which the vm precompiler puts into the test
// directory.
« no previous file with comments | « tools/testing/dart/runtime_configuration.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698