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); |
} |