/test/vts-testcase/kernel/ltp/testcase/tools/ |
D | ltp_test_cases.py | 182 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, '<p_dir;') 250 ltp_test_line = ltp_test_template % (test_display_name, command)
|
D | test_case.py | 43 def __init__(self, testsuite, testname, command): argument 46 self._command = command 94 def command(self): member in TestCase
|
/test/vts-testcase/kernel/ltp/ |
D | test_cases_parser.py | 96 testsuite, testname, command = items 110 command = command.replace(';', '&&') 114 command = command.replace('/tmp', ltp_configs.TMPDIR) 117 testsuite=testsuite, testname=testname, command=command)
|
D | test_case.py | 46 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('&&'))
|
D | KernelLtpTest.py | 423 commands=test_case.command) 480 commands=test_case.command)
|
/test/vts/utils/python/mirror/ |
D | shell_mirror.py | 60 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/ |
D | cmd_utils.py | 84 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/ |
D | TargetFileUtils.java | 146 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/ |
D | VtsDriverControlMessage.proto | 21 // 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
|
D | AndroidSystemControlMessage.proto | 23 // 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/ |
D | SystemPackageUninstaller.java | 179 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/ |
D | vts_tcp_client.py | 408 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/ |
D | android.py | 104 def _cmd(self, command, uid=None): argument 107 self.client.write(json.dumps({'cmd': command,
|
D | android_device.py | 697 command = 'cat /sys/class/net/wlan0/address' 698 response = self.adb.shell(command)
|
/test/vti/test_serving/proto/ |
D | TestScheduleConfigMessage.proto | 19 // Type of a command. 117 // Base GCS url for the repack command.
|
/test/vts/utils/app_engine/ |
D | setup.txt | 7 If command gcloud is not recognizable, extract the google-cloud-sdk-116.0.0-linux-x86_64.tar.gz
|
/test/vts/runners/target/gtest/ |
D | gtest_main.cpp | 267 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/ |
D | TestSuiteResultMessage.proto | 65 // Fetch info used to fetch and flash certain builds for retry_prompt command.
|
/test/vti/dashboard/ |
D | README.md | 92 ## Update config file through gcloud command 193 Thus, please execute the below command as I wrote in order.
|
/test/vts-testcase/nbu/src/ |
D | README.md | 73 To check your Python's version, use command `$ python --version`.
|
/test/app_compat/csuite/ |
D | pylintrc | 46 # 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/ |
D | RunModelsInMultipleProcesses.java | 148 multiProcessTestBuilder.command(NATIVE_PROCESS_CMD, targetModelFile.getAbsolutePath(), in call()
|