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

  /external/autotest/client/bin/
package.py 40 # a_cmd - Command to determine package architecture
44 a_cmd = 'rpm -qp --qf %{ARCH} ' + rpm_package + ' 2>/dev/null'
56 package_info['arch'] = utils.system_output(a_cmd)
128 # a_cmd - Command to determine package architecture
131 a_cmd = 'dpkg -f ' + dpkg_package + ' Architecture 2>/dev/null'
137 package_info['arch'] = utils.system_output(a_cmd)
package_unittest.py 46 a_cmd = 'rpm -qp --qf %{ARCH} ' + input_package + ' 2>/dev/null'
57 utils.system_output.expect_call(a_cmd).and_return('586')
82 a_cmd = 'dpkg -f ' + input_package + ' Architecture 2>/dev/null'
89 utils.system_output.expect_call(a_cmd).and_return('586')

Completed in 408 milliseconds