Home
last modified time | relevance | path

Searched refs:getCommandLine (Results 1 – 16 of 16) sorted by relevance

/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DBugreportParserTest.java230 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/
DRetryReschedulerTest.java111 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_onlyPassTests()
152 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_carryShardCount()
195 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_someFailedTests()
234 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_someAssumptionFailures()
273 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_mixedFailedAssumptionFailures()
318 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_excludeFilters()
361 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_excludeFilters_abi()
399 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_parameterized_nofail()
448 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("previous_command"); in testReschedule_parameterized_failed()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DTestInvocationMultiTest.java170 EasyMock.expect(mMockConfig.getCommandLine()).andStubReturn("empty"); in testRunBuildProvider_oneMiss()
250 EasyMock.expect(mMockConfig.getCommandLine()).andStubReturn("empty"); in testRunBuildProvider_oneThrow()
330 EasyMock.expect(mMockConfig.getCommandLine()).andStubReturn("empty"); in testRunBuildProvider_cleanUpThrow()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationExecution.java557 if (config.getCommandLine() != null) { in updateInvocationContext()
560 TestInvocation.COMMAND_ARGS_KEY, config.getCommandLine()); in updateInvocationContext()
605 if (config.getCommandLine() != null) { in updateBuild()
607 info.addBuildAttribute(TestInvocation.COMMAND_ARGS_KEY, config.getCommandLine()); in updateBuild()
DTestInvocation.java677 String cmdLineArgs = config.getCommandLine(); in invoke()
/tools/tradefederation/core/tests/src/com/android/tradefed/sandbox/
DTradefedSandboxTest.java197 EasyMock.expect(mMockConfig.getCommandLine()).andReturn("empty --arg 1"); in testPrepareEnvironment_noTfDirJar()
210 EasyMock.expect(mMockConfig.getCommandLine()).andReturn("empty --arg 1").times(2); in setPrepareConfigurationExpectations()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/retry/
DITestSuiteResultLoader.java28 public String getCommandLine(); in getCommandLine() method
DRetryRescheduler.java120 String commandLine = previousLoader.getCommandLine(); in run()
/tools/tradefederation/core/src/com/android/tradefed/sandbox/
DTradefedSandbox.java207 config.getCommandLine(), in prepareEnvironment()
298 String commandLine = config.getCommandLine(); in prepareConfiguration()
/tools/loganalysis/src/com/android/loganalysis/item/
DBugreportItem.java83 public CommandLineItem getCommandLine() { in getCommandLine() method in BugreportItem
/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandSchedulerFuncTest.java119 EasyMock.expect(mSlowConfig.getCommandLine()).andStubReturn(""); in setUp()
123 EasyMock.expect(mFastConfig.getCommandLine()).andStubReturn(""); in setUp()
DCommandSchedulerTest.java570 EasyMock.expect(rescheduledConfig.getCommandLine()).andStubReturn(""); in testRun_rescheduled()
757 EasyMock.expect(mMockConfiguration.getCommandLine()).andStubReturn(""); in setCreateConfigExpectations()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DRetryConfigurationFactoryTest.java82 EasyMock.expect(mMockLoader.getCommandLine()).andReturn("suite/apct"); in testLoadRescheduler()
/tools/tradefederation/core/src/com/android/tradefed/config/
DIConfiguration.java562 public String getCommandLine(); in getCommandLine() method
DConfiguration.java285 public String getCommandLine() { in getCommandLine() method in Configuration
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DShardHelper.java220 oriConfig.getCommandLine()), in cloneConfigObject()