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

Unified Diff: utils/testrunner/run_pipeline.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « utils/testrunner/options.dart ('k') | utils/tests/archive/reader_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/testrunner/run_pipeline.dart
diff --git a/utils/testrunner/run_pipeline.dart b/utils/testrunner/run_pipeline.dart
index 3b21cad92e89c8f8b5d210bc00cd4c4ef9372785..ba0f75d3cc3b2ad9ed4ad94aa8f2889c99b913b2 100644
--- a/utils/testrunner/run_pipeline.dart
+++ b/utils/testrunner/run_pipeline.dart
@@ -6,7 +6,6 @@
library pipeline;
import 'dart:isolate';
import 'dart:io';
-import 'dart:math';
part 'pipeline_utils.dart';
/**
@@ -84,7 +83,7 @@ startHTTPServerStage() {
var r = new Random();
tryStartHTTPServer(r, MAX_SERVER_TRIES);
} else {
- serverPort = parseInt(config["port"]);
+ serverPort = int.parse(config["port"]);
// Start the HTTP server.
serverId = startProcess(config["dart"],
[ serverPath, '--port=$serverPort', '--root=$serverRoot']);
« no previous file with comments | « utils/testrunner/options.dart ('k') | utils/tests/archive/reader_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698