Home
last modified time | relevance | path

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

/openbmc/openbmc/meta-arm/meta-arm/lib/oeqa/runtime/cases/
H A Dfvp_devices.py8 def run_cmd(self, cmd, check=True, retry=3): member in FvpDevicesTest
36 _, output = self.run_cmd(cmd)
48 _, output = self.run_cmd(cmd)
57 self.run_cmd(cmd)
61 self.run_cmd(
65 _, output = self.run_cmd(
81 _, cpus = self.run_cmd('find /sys/firmware/devicetree/base/cpus/'
93 _, cpus = self.run_cmd('grep -c "processor" /proc/cpuinfo')
117 self.run_cmd('hwclock')
132 self.run_cmd('wget -O /dev/null "https://www.arm.com"')
[all …]
/openbmc/u-boot/scripts/
H A Dcoccicheck156 run_cmd() { function
231 run_cmd $SPATCH -D patch \
233 run_cmd $SPATCH -D report \
235 run_cmd $SPATCH -D context \
237 run_cmd $SPATCH -D org \
240 run_cmd $SPATCH -D report \
242 run_cmd $SPATCH -D context \
245 run_cmd $SPATCH -D $MODE $FLAGS --cocci-file $COCCI $OPT $OPTIONS || exit 1
/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dgitarchive.py66 repo.run_cmd('add .', env_update)
70 repo.run_cmd(['rm', '--cached', '--ignore-unmatch'] + [f for f in exclude], env_update)
72 tree = repo.run_cmd('write-tree', env_update)
81 commit = repo.run_cmd(git_cmd, env_update)
86 repo.run_cmd(['notes', '--ref', ref, 'add',
91 repo.run_cmd(git_cmd)
96 repo.run_cmd('reset --hard')
118 tags_refs = repo.run_cmd(cmd)
128 tags_refs = repo.run_cmd(cmd)
135 tags = repo.run_cmd(cmd).splitlines()
[all …]
H A Dgit.py56 def run_cmd(self, git_args, env_update=None): member in GitRepo
67 return self.run_cmd(['rev-parse', '--verify', revision])
76 return self.run_cmd(['symbolic-ref', 'HEAD'])[11:]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dgitarchivetests.py37 repo.run_cmd(["remote", "add", "origin", "."])
41 repo.run_cmd(["add", fake_data_file])
42 repo.run_cmd(["commit", "-m", "\"Add fake data\""])
44 repo.run_cmd(["tag", tag])
52 for tag in git_obj.run_cmd(["tag"]).splitlines():
H A Dkerneldevelopment.py55 repo.run_cmd('add %s' % readme)
56 repo.run_cmd(['commit', '-m', 'KERNEL_DEV_TEST_CASE'])
57 repo.run_cmd(['format-patch', '-1'])
/openbmc/openbmc/poky/meta/lib/oeqa/buildperf/
H A Dtest_basic.py34 self.run_cmd(['bitbake', self.build_target])
35 self.run_cmd(['bitbake', self.build_target, '-c', 'cleansstate'])
68 self.run_cmd(['bitbake', self.build_target])
100 self.run_cmd(['bitbake', '-c', 'do_populate_sdk_ext',
H A Dbase.py278 self.run_cmd(['bitbake', self.build_target, '--runall=fetch'])
291 def run_cmd(self, cmd): member in BuildPerfTestCase
/openbmc/qemu/tests/functional/
H A Dtest_arm_bflt.py31 res = self.run_cmd(busybox_path)
35 res = self.run_cmd(busybox_path, ['uname', '-a'])
/openbmc/openbmc/poky/scripts/
H A Doe-build-perf-report135 data = parse_xml_stream(repo.run_cmd(['show'] + git_objs + ['--']))
140 data = parse_json_stream(repo.run_cmd(['show'] + git_objs + ['--']))
403 … bs_all = json.loads(repo.run_cmd(['notes', '--ref', notes_ref, 'show', tag + '^0']))
406 … bs_all = json.loads(repo.run_cmd(['notes', '--ref', notes_ref2, 'show', tag + '^0']))
444 msg = repo.run_cmd(['log', '-1', '--branches', '--remotes', '--format=%b'])
/openbmc/phosphor-state-manager/
H A Dobmcutil137 function run_cmd() function
150 run_cmd busctl set-property "$@"
156 run_cmd busctl get-property "$@"
/openbmc/openbmc/meta-security/meta-parsec/recipes-parsec/parsec-tool/files/
H A D0001-parsec-cli-tests.sh-adapt-to-new-serialNumber-output.patch23 run_cmd $OPENSSL req -text -noout -verify -in ${MY_TMP}/${KEY}.csr >${MY_TMP}/${KEY}.txt
/openbmc/openbmc/poky/scripts/lib/resulttool/
H A Dresultutils.py236 files = repo.run_cmd(['ls-tree', "--name-only", "-r", tag]).splitlines()
255 for obj in parse_json_stream(repo.run_cmd(['show'] + git_objs + ['--'])):
/openbmc/qemu/tests/functional/qemu_test/
H A Dtestcase.py272 def run_cmd(self, bin_path, args=[]): member in QemuUserTest