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

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

Issue 2920633002: Remove unused record and replay functionality. (Closed)
Patch Set: Created 3 years, 7 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/record_and_replay.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_configurations.dart
diff --git a/tools/testing/dart/test_configurations.dart b/tools/testing/dart/test_configurations.dart
index 4b146aa5e7e6672a63a51645c24c71f9060f469a..ea66bfc938e47f041b17d1f37e68e9e17d978544 100644
--- a/tools/testing/dart/test_configurations.dart
+++ b/tools/testing/dart/test_configurations.dart
@@ -67,17 +67,9 @@ Future testConfigurations(List<Configuration> configurations) async {
var listTests = firstConf.listTests;
var reportInJson = firstConf.reportInJson;
- var recordingPath = firstConf.recordingPath;
- var replayPath = firstConf.replayPath;
Browser.resetBrowserConfiguration = firstConf.resetBrowser;
- if (recordingPath != null && replayPath != null) {
- print("Fatal: Can't have the '--record_to_file' and '--replay_from_file'"
- "at the same time. Exiting ...");
- exit(1);
- }
-
if (!firstConf.appendLogs) {
var files = [
new File(TestUtils.flakyFileName),
@@ -269,16 +261,6 @@ Future testConfigurations(List<Configuration> configurations) async {
// [firstConf] is needed here, since the ProcessQueue needs to know the
// settings of 'noBatch' and 'local_ip'
- new ProcessQueue(
- firstConf,
- maxProcesses,
- maxBrowserProcesses,
- startTime,
- testSuites,
- eventListener,
- allTestsFinished,
- verbose,
- recordingPath,
- replayPath,
- adbDevicePool);
+ new ProcessQueue(firstConf, maxProcesses, maxBrowserProcesses, startTime,
+ testSuites, eventListener, allTestsFinished, verbose, adbDevicePool);
}
« no previous file with comments | « tools/testing/dart/record_and_replay.dart ('k') | tools/testing/dart/test_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698