/tools/loganalysis/tests/src/com/android/loganalysis/parser/ |
D | BugreportParserTest.java | 230 assertTrue(bugreport.getCommandLine().isEmpty()); in testParse_command_line() 234 assertEquals(1, bugreport.getCommandLine().size()); in testParse_command_line() 235 assertEquals("value", bugreport.getCommandLine().get("key")); in testParse_command_line() 239 assertEquals(2, bugreport.getCommandLine().size()); in testParse_command_line() 240 assertEquals("value1", bugreport.getCommandLine().get("key1")); in testParse_command_line() 241 assertEquals("value2", bugreport.getCommandLine().get("key2")); in testParse_command_line() 246 assertEquals(2, bugreport.getCommandLine().size()); in testParse_command_line() 247 assertEquals("value=withequals", bugreport.getCommandLine().get("key1")); in testParse_command_line() 248 assertEquals("", bugreport.getCommandLine().get("key2")); in testParse_command_line() 252 assertEquals(3, bugreport.getCommandLine().size()); in testParse_command_line() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/retry/ |
D | RetryReschedulerTest.java | 112 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_onlyPassTests() 152 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_carryShardCount() 194 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_someFailedTests() 233 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_someAssumptionFailures() 272 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_mixedFailedAssumptionFailures() 317 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_excludeFilters() 356 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_module_option() 399 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_excludeFilters_abi() 440 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_moduleOption_abi() 478 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_parameterized_nofail() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/cluster/ |
D | ClusterCommandSchedulerTest.java | 431 assertEquals("command line 1", command.getCommandLine()); 477 assertEquals("command line 1", command.getCommandLine()); 507 assertEquals(CMD_LINE, cmds.get(0).getCommandLine()); 519 assertEquals(CMD_LINE, cmds.get(0).getCommandLine()); 533 assertEquals(CMD_LINE, cmds.get(0).getCommandLine()); 559 assertEquals(CMD_LINE, cmds.get(0).getCommandLine()); 560 assertEquals("test1", cmds.get(1).getCommandLine()); 867 assertEquals("empty --dry-run", cmd.getCommandLine()); 950 cmds.get(0).getCommandLine()); 1074 assertEquals(cmd.getCommandLine(), test.getCommandLine());
|
D | ClusterCommandTest.java | 47 assertEquals(COMMAND_LINE, command.getCommandLine()); in testFromJson_withAssignedAttemptId() 60 assertEquals(COMMAND_LINE, command.getCommandLine()); in testFromJson_withoutAssignedAttemptId() 77 assertEquals(COMMAND_LINE, command.getCommandLine()); in testFromJson_extraOptions()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/ |
D | TestInvocationMultiTest.java | 187 EasyMock.expect(mMockConfig.getCommandLine()).andStubReturn("empty"); in testRunBuildProvider_oneMiss() 283 EasyMock.expect(mMockConfig.getCommandLine()).andStubReturn("empty"); in testResolveDynamicFails() 365 EasyMock.expect(mMockConfig.getCommandLine()).andStubReturn("empty"); in testRunBuildProvider_oneThrow() 455 EasyMock.expect(mMockConfig.getCommandLine()).andStubReturn("empty"); in testRunBuildProvider_cleanUpThrow()
|
/tools/tradefederation/core/src/com/android/tradefed/cluster/ |
D | ClusterCommandConfigBuilder.java | 228 String commandLine = mTestContext.getCommandLine(); in build() 230 commandLine = mCommand.getCommandLine(); in build() 233 config.injectOptionValue("cluster:original-command-line", mCommand.getCommandLine()); in build()
|
D | TestContext.java | 40 public String getCommandLine() { in getCommandLine() method in TestContext
|
D | ClusterCommand.java | 151 public String getCommandLine() { in getCommandLine() method in ClusterCommand
|
D | ClusterCommandLauncher.java | 387 String getCommandLine() { in getCommandLine() method in ClusterCommandLauncher
|
D | ClusterCommandScheduler.java | 630 String cmdLine = commandTask.getCommandLine(); in execClusterCommand()
|
/tools/tradefederation/core/src/com/android/tradefed/invoker/ |
D | TestInvocation.java | 840 String cmdLineArgs = config.getCommandLine(); in invoke() 1074 if (config.getCommandLine() != null) { in updateInvocationContext() 1076 TestInvocation.COMMAND_ARGS_KEY, config.getCommandLine()); in updateInvocationContext()
|
D | InvocationExecution.java | 707 if (config.getCommandLine() != null) { in updateBuild() 709 info.addBuildAttribute(TestInvocation.COMMAND_ARGS_KEY, config.getCommandLine()); in updateBuild()
|
D | DelegatedInvocationExecution.java | 124 commandLine.addAll(Arrays.asList(delegator.getCommandLine())); in runTests()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/sandbox/ |
D | TradefedSandboxTest.java | 239 EasyMock.expect(mMockConfig.getCommandLine()).andReturn("empty --arg 1"); in testPrepareEnvironment_noTfDirJar() 252 EasyMock.expect(mMockConfig.getCommandLine()).andReturn("empty --arg 1").times(2); in setPrepareConfigurationExpectations()
|
/tools/tradefederation/core/src/com/android/tradefed/sandbox/ |
D | TradefedSandbox.java | 256 config.getCommandLine(), in prepareEnvironment() 348 String commandLine = config.getCommandLine(); in prepareConfiguration()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/command/ |
D | CommandSchedulerFuncTest.java | 119 EasyMock.expect(mSlowConfig.getCommandLine()).andStubReturn(""); in setUp() 123 EasyMock.expect(mFastConfig.getCommandLine()).andStubReturn(""); in setUp()
|
D | CommandSchedulerTest.java | 542 EasyMock.expect(rescheduledConfig.getCommandLine()).andStubReturn(""); in testRun_rescheduled() 729 EasyMock.expect(mMockConfiguration.getCommandLine()).andStubReturn(""); in setCreateConfigExpectations()
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/retry/ |
D | ITestSuiteResultLoader.java | 28 public String getCommandLine(); in getCommandLine() method
|
D | RetryRescheduler.java | 140 String commandLine = previousLoader.getCommandLine(); in run()
|
/tools/tradefederation/core/src/com/android/tradefed/config/proxy/ |
D | TradefedDelegator.java | 80 public String[] getCommandLine() { in getCommandLine() method in TradefedDelegator
|
/tools/loganalysis/src/com/android/loganalysis/item/ |
D | BugreportItem.java | 83 public CommandLineItem getCommandLine() { in getCommandLine() method in BugreportItem
|
/tools/tradefederation/core/tests/src/com/android/tradefed/config/ |
D | RetryConfigurationFactoryTest.java | 81 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("suite/apct"); in testLoadRescheduler()
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
D | IConfiguration.java | 571 public String getCommandLine(); in getCommandLine() method
|
D | Configuration.java | 286 public String getCommandLine() { in getCommandLine() method in Configuration
|