Home
last modified time | relevance | path

Searched refs:commandLine (Results 1 – 19 of 19) sorted by relevance

/tools/asuite/asuite_plugin/src/test/unittests/
DCommandRunnerTest.java46 GeneralCommandLine commandLine = (GeneralCommandLine) field.get(lsCommand); in testCommandRunnerByLs() local
47 Assert.assertSame(commandLine.getCharset(), StandardCharsets.UTF_8); in testCommandRunnerByLs()
48 Assert.assertEquals(commandLine.getCommandLineString(), "ls"); in testCommandRunnerByLs()
57 GeneralCommandLine commandLine = (GeneralCommandLine) field.get(lsCommand); in testCommandRunnerByTarget() local
58 Assert.assertSame(commandLine.getCharset(), StandardCharsets.UTF_8); in testCommandRunnerByTarget()
60 commandLine.getCommandLineString(), in testCommandRunnerByTarget()
/tools/tradefederation/core/tests/src/com/android/tradefed/sandbox/
DSandboxConfigDumpTest.java56 String[] commandLine = in testParseCommandLine() local
58 int res = mConfigDump.parse(commandLine); in testParseCommandLine()
75 String[] commandLine = in testParseCommandLine_filtered() local
79 int res = mConfigDump.parse(commandLine); in testParseCommandLine_filtered()
96 String[] commandLine = in testParseCommandLine_run() local
100 int res = mConfigDump.parse(commandLine); in testParseCommandLine_run()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/mobly/
DMoblyBinaryHostTest.java349 List<String> commandLine = new ArrayList<>(); in buildCommandLineArray() local
350 commandLine.add(filePath); in buildCommandLineArray()
351 commandLine.add("--"); in buildCommandLineArray()
353 commandLine.add("--config=" + getConfigPath()); in buildCommandLineArray()
356 commandLine.add("--test_bed=" + getTestBed()); in buildCommandLineArray()
358 commandLine.add("--device_serial=" + getDevice().getSerialNumber()); in buildCommandLineArray()
359 commandLine.add("--log_path=" + getLogDirAbsolutePath()); in buildCommandLineArray()
361 commandLine.addAll(getTestOptions()); in buildCommandLineArray()
362 return commandLine.toArray(new String[0]); in buildCommandLineArray()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/rust/
DRustBinaryHostTest.java129 List<String> commandLine = new ArrayList<>(); in runSingleRustFile() local
130 commandLine.add(file.getAbsolutePath()); in runSingleRustFile()
134 commandLine.addAll(mTestOptions); in runSingleRustFile()
136 List<String> listCommandLine = new ArrayList<>(commandLine); in runSingleRustFile()
162 getRunUtil().runTimedCmd(mTestTimeout, commandLine.toArray(new String[0])); in runSingleRustFile()
/tools/tradefederation/core/test_framework/com/android/tradefed/device/metric/
DAtraceCollector.java200 List<String> commandLine = new ArrayList<String>(); in postProcess() local
201 commandLine.add(mLogProcessingBinary.getAbsolutePath()); in postProcess()
203 commandLine.add(entry.replaceAll(mLogProcessingTraceInput, trace.getAbsolutePath())); in postProcess()
206 String[] commandLineArr = new String[commandLine.size()]; in postProcess()
207 commandLine.toArray(commandLineArr); in postProcess()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/python/
DPythonBinaryHostTest.java239 List<String> commandLine = new ArrayList<>(); in runSinglePythonFile() local
240 commandLine.add(pyFile.getAbsolutePath()); in runSinglePythonFile()
244 commandLine.add("-s"); in runSinglePythonFile()
245 commandLine.add(mTestInfo.getDevice().getSerialNumber()); in runSinglePythonFile()
264 commandLine.add("--" + TEST_OUTPUT_FILE_FLAG); in runSinglePythonFile()
265 commandLine.add(tempTestOutputFile.getAbsolutePath()); in runSinglePythonFile()
307 commandLine.addAll(mTestOptions); in runSinglePythonFile()
310 getRunUtil().runTimedCmd(mTestTimeout, commandLine.toArray(new String[0])); in runSinglePythonFile()
/tools/asuite/asuite_plugin/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/tools/ndkports/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/tools/metalava/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/tools/trebuchet/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommandConfigBuilder.java228 String commandLine = mTestContext.getCommandLine(); in build()
229 if (commandLine == null || commandLine.isEmpty()) { in build()
230 commandLine = mCommand.getCommandLine(); in build()
232 config.injectOptionValue("cluster:command-line", commandLine); in build()
DClusterCommandLauncher.java208 String commandLine = mCommandLine; in run() local
214 if (mOriginalCommandLine != null && !mOriginalCommandLine.equals(commandLine)) { in run()
237 commandLine = mHelper.buildNewCommandConfig(commandLine, port, testWorkDir); in run()
240 List<String> javaCommandArgs = buildJavaCommandArgs(classpath, commandLine); in run()
241 CLog.i("Running a command line: %s", commandLine); in run()
DTestContext.java44 public void setCommandLine(String commandLine) { in setCommandLine() argument
45 mCommandLine = commandLine; in setCommandLine()
DSubprocessReportingHelper.java123 public String buildNewCommandConfig(String commandLine, String port, File parentDir) in buildNewCommandConfig() argument
125 String[] tokens = QuotationAwareTokenizer.tokenizeLine(commandLine); in buildNewCommandConfig()
/tools/loganalysis/src/com/android/loganalysis/item/
DBugreportItem.java90 public void setCommandLine(CommandLineItem commandLine) { in setCommandLine() argument
91 setAttribute(COMMAND_LINE, commandLine); in setCommandLine()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DTestInvocationTest.java893 String[] commandLine = {"run", "empty"}; in testInvoke_testtag() local
894 mStubConfiguration.setCommandLine(commandLine); in testInvoke_testtag()
927 String[] commandLine = {"run", "empty"}; in testInvoke_testtag_notset() local
928 mStubConfiguration.setCommandLine(commandLine); in testInvoke_testtag_notset()
957 String[] commandLine = {"run", "empty"}; in testInvoke_notesttag() local
958 mStubConfiguration.setCommandLine(commandLine); in testInvoke_notesttag()
996 String[] commandLine = {"run", "empty"}; in testInvoke_buildProviderNeedTestTag() local
997 mStubConfiguration.setCommandLine(commandLine); in testInvoke_buildProviderNeedTestTag()
1276 String[] commandLine = {"empty", "--test-tag", "t"}; in testInvoke_shardableTest_legacy() local
1286 mStubConfiguration.setCommandLine(commandLine); in testInvoke_shardableTest_legacy()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/retry/
DRetryRescheduler.java140 String commandLine = previousLoader.getCommandLine(); in run() local
146 QuotationAwareTokenizer.tokenizeLine(commandLine)); in run()
/tools/tradefederation/core/tests/src/com/android/tradefed/cluster/
DClusterCommandSchedulerTest.java346 String requestId, String commandId, String taskId, String attemptId, String commandLine)
354 ret.put("command_line", commandLine);
/tools/tradefederation/core/tests/res/testdata/
Dtradefed-prebuilt-cts-8.0_r21.jarMETA-INF/ META-INF/MANIFEST.MF jline/ jline/CompletionHandler.class CompletionHandler ...