Home
last modified time | relevance | path

Searched refs:command (Results 1 – 22 of 22) sorted by relevance

/test/vts-testcase/kernel/ltp/testcase/tools/
Dltp_test_cases.py182 testsuite, testname, command = items
196 command = command.replace('/tmp', ltp_configs.TMPDIR)
199 testsuite=testsuite, testname=testname, command=command)
212 'cmd = %s', test_display_name, command)
242 if self.IsLtpBinaryExist(command):
246 command = command.replace(';', '&&')
249 command = command.replace(ltp_configs.LTPDIR, '&ltp_dir;')
250 ltp_test_line = ltp_test_template % (test_display_name, command)
Dtest_case.py43 def __init__(self, testsuite, testname, command): argument
46 self._command = command
94 def command(self): member in TestCase
/test/vts-testcase/kernel/ltp/
Dtest_cases_parser.py96 testsuite, testname, command = items
110 command = command.replace(';', '&&')
114 command = command.replace('/tmp', ltp_configs.TMPDIR)
117 testsuite=testsuite, testname=testname, command=command)
Dtest_case.py46 def __init__(self, testsuite, testname, command): argument
49 self._command = command
97 def command(self): member in TestCase
103 executables = (command.strip().split()[0]
104 for command in self._command.split('&&'))
DKernelLtpTest.py423 commands=test_case.command)
480 commands=test_case.command)
/test/vts/utils/python/mirror/
Dshell_mirror.py60 def Execute(self, command, no_except=False): argument
75 const.STDOUT: [""] * len(command),
77 ["VTS remote shell has been disabled."] * len(command),
78 const.EXIT_CODE: [-2] * len(command)
80 result = self._client.ExecuteShellCommand(command, no_except)
/test/vts/utils/python/common/
Dcmd_utils.py84 def RunCommand(command): argument
94 command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
98 '(stdout: %s\n stderr: %s\n)' % (command, stdout,
143 results = [ExecuteOneShellCommand(command) for command in cmd]
/test/vts/tools/vts-core-tradefed/src/com/android/tradefed/util/
DTargetFileUtils.java146 String command = String.format("find %s -name \"%s\"", path, namePattern); in findFile() local
148 command += " " + String.join(" ", options); in findFile()
150 CLog.d("command: %s", command); in findFile()
151 CommandResult result = device.executeShellV2Command(command); in findFile()
153 CLog.e("Find command: '%s' failed, returned:\nstdout:%s\nstderr:%s", command, in findFile()
/test/vts/proto/
DVtsDriverControlMessage.proto21 // Type of a command.
43 // To execute a shell command.
68 // To specify a command.
137 // The stdout message for each command
139 // The stderr message for each command
141 // The exit code for each command
DAndroidSystemControlMessage.proto23 // Type of a command.
47 // To execute a shell command;
86 // To specify a command.
/test/app_compat/csuite/harness/src/main/java/com/android/csuite/core/
DSystemPackageUninstaller.java179 ITestDevice device, String command, String failureMessage) in executeShellCommandOrThrow() argument
181 CommandResult commandResult = device.executeShellV2Command(command); in executeShellCommandOrThrow()
192 ITestDevice device, String command, String failureMessage) in executeShellCommandOrLog() argument
194 CommandResult commandResult = device.executeShellV2Command(command); in executeShellCommandOrLog()
/test/vts/runners/host/tcp_client/
Dvts_tcp_client.py408 def ExecuteShellCommand(self, command, no_except=False): argument
423 return self.__ExecuteShellCommand(command)
430 const.STDOUT: [""] * len(command),
431 const.STDERR: [str(e)] * len(command),
432 const.EXIT_CODE: [-1] * len(command)
435 def __ExecuteShellCommand(self, command): argument
447 shell_command=command)
/test/vts/utils/python/controllers/
Dandroid.py104 def _cmd(self, command, uid=None): argument
107 self.client.write(json.dumps({'cmd': command,
Dandroid_device.py697 command = 'cat /sys/class/net/wlan0/address'
698 response = self.adb.shell(command)
/test/vti/test_serving/proto/
DTestScheduleConfigMessage.proto19 // Type of a command.
117 // Base GCS url for the repack command.
/test/vts/utils/app_engine/
Dsetup.txt7 If command gcloud is not recognizable, extract the google-cloud-sdk-116.0.0-linux-x86_64.tar.gz
/test/vts/runners/target/gtest/
Dgtest_main.cpp267 std::string command; in EnumerateTests() local
269 command += argv[i]; in EnumerateTests()
270 command += " "; in EnumerateTests()
272 command += "--gtest_list_tests"; in EnumerateTests()
273 FILE* fp = popen(command.c_str(), "r"); in EnumerateTests()
/test/vti/dashboard/src/main/proto/
DTestSuiteResultMessage.proto65 // Fetch info used to fetch and flash certain builds for retry_prompt command.
/test/vti/dashboard/
DREADME.md92 ## Update config file through gcloud command
193 Thus, please execute the below command as I wrote in order.
/test/vts-testcase/nbu/src/
DREADME.md73 To check your Python's version, use command `$ python --version`.
/test/app_compat/csuite/
Dpylintrc46 # multiple time (only on the command line, not in the configuration file where
52 # option multiple times (only on the command line, not in the configuration
152 # command line instead of printing them on stdout. Reports (if any) will be
/test/mlts/benchmark/src/com/android/nn/crashtest/core/test/
DRunModelsInMultipleProcesses.java148 multiProcessTestBuilder.command(NATIVE_PROCESS_CMD, targetModelFile.getAbsolutePath(), in call()