Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/invoker/
DRemoteInvocationExecution.java314 List<String> remoteTfCommand = new ArrayList<>(); in runRemote() local
315 remoteTfCommand.add("pushd"); in runRemote()
316 remoteTfCommand.add(mRemoteTradefedDir + ";"); in runRemote()
317 remoteTfCommand.add(String.format("PATH=%s:$PATH", new File(mRemoteAdbPath).getParent())); in runRemote()
318 remoteTfCommand.add("screen -dmSU tradefed sh -c"); in runRemote()
332 remoteTfCommand.add("\"" + tfCmdBuilder.toString() + "\""); in runRemote()
336 info, options, runUtil, 0L, remoteTfCommand.toArray(new String[0])); in runRemote()