HomeSort by relevance Sort by last modified time
    Searched refs:v_cmd (Results 1 - 2 of 2) sorted by null

  /external/autotest/client/bin/
package.py 41 # v_cmd - Command to determine package version
45 v_cmd = 'rpm -qp ' + rpm_package + ' 2>/dev/null'
46 i_cmd = 'rpm -q ' + utils.system_output(v_cmd) + ' 2>&1 >/dev/null'
55 package_info['version'] = utils.system_output(v_cmd)
129 # v_cmd - Command to determine package version
132 v_cmd = 'dpkg -f ' + dpkg_package + ' Package 2>/dev/null'
133 i_cmd = 'dpkg -s ' + utils.system_output(v_cmd) + ' 2>/dev/null'
136 package_info['version'] = utils.system_output(v_cmd)
package_unittest.py 47 v_cmd = 'rpm -qp ' + input_package + ' 2>/dev/null'
49 utils.system_output.expect_call(v_cmd).and_return(ver)
55 utils.system_output.expect_call(v_cmd).and_return(ver)
83 v_cmd = 'dpkg -f ' + input_package + ' Package 2>/dev/null'
84 utils.system_output.expect_call(v_cmd).and_return(ver)
87 utils.system_output.expect_call(v_cmd).and_return(ver)

Completed in 83 milliseconds