Home
last modified time | relevance | path

Searched refs:_run (Results 1 – 25 of 26) sorted by relevance

12

/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdkext/cases/
H A Ddevtool.py40 self._run('devtool add myapp %s' % directory)
42 self._run('devtool build myapp')
44 self._run('devtool reset myapp')
47 self._run('devtool add myapp %s' % directory)
49 self._run('devtool package myapp')
51 self._run('devtool reset myapp')
54 output = self._run('which devtool')
59 self._run('devtool add myapp %s' % self.myapp_dst)
60 self._run('devtool reset myapp')
74 self._run('devtool sdk-install libxml2')
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dbuildproject.py46 def _run(self, cmd): member in BuildProject
52 …return self._run('cd %s; gnu-configize; %s ./configure %s' % (self.targetdir, extra_cmds, configur…
55 return self._run('cd %s; make %s' % (self.targetdir, make_args))
58 return self._run('cd %s; make install %s' % (self.targetdir, install_args))
65 self._run('rm -rf %s' % self.targetdir)
H A Dtargetbuild.py60 def _run(self, cmd): member in BuildProject
66 return self._run('cd %s; %s ./configure %s' % (self.targetdir, extra_cmds, configure_args))
69 return self._run('cd %s; make %s' % (self.targetdir, make_args))
72 return self._run('cd %s; make install %s' % (self.targetdir, install_args))
77 self._run('rm -rf %s' % self.targetdir)
104 def _run(self, cmd): member in TargetBuildProject
142 def _run(self, cmd): member in SDKBuildProject
H A Dsshcontrol.py47 def _run(self, command, timeout=None, logfile=None): member in SSHProcess
90 self._run(command, timeout, logfile)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/cases/
H A Dbuildcpio.py31 self._run("sed -i -e '/char.*program_name/d' {source}/src/global.c".format(**dirs))
32 …self._run("cd {build} && {source}/configure --disable-maintainer-mode $CONFIGURE_FLAGS".format(**d…
33 self._run("cd {build} && make -j".format(**dirs))
34 self._run("cd {build} && make install DESTDIR={install}".format(**dirs))
H A Dbuildgalculator.py38 …self._run("cd {source} && sed -i -e '/s_preferences.*prefs;/d' src/main.c && autoreconf -i -f -I $…
39 self._run("cd {build} && {source}/configure $CONFIGURE_FLAGS".format(**dirs))
40 self._run("cd {build} && make -j".format(**dirs))
41 self._run("cd {build} && make install DESTDIR={install}".format(**dirs))
H A Dgcc.py33 self._run('$CC %s/test.c -o %s/test -lm' % (self.tc.sdk_dir, self.tc.sdk_dir))
36 self._run('$CXX %s/test.c -o %s/test -lm' % (self.tc.sdk_dir, self.tc.sdk_dir))
39 self._run('$CXX %s/test.cpp -o %s/test -lm' % (self.tc.sdk_dir, self.tc.sdk_dir))
42 self._run('cd %s; make -f testsdkmakefile' % self.tc.sdk_dir)
H A Dbuildlzip.py34 self._run(cmd.format(**dirs))
35 self._run("cd {build} && make -j".format(**dirs))
36 self._run("cd {build} && make install DESTDIR={install}".format(**dirs))
H A Dbuildepoxy.py35 …log = self._run("meson --warnlevel 1 -Degl=no -Dglx=no -Dx11=false {build} {source}".format(**dirs…
38 self._run("ninja -C {build} -v".format(**dirs))
39 self._run("DESTDIR={install} ninja -C {build} -v install".format(**dirs))
H A Dassimp.py37 … self._run("cd {build} && cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON {source}".format(**dirs))
38 self._run("cmake --build {build} -- -j".format(**dirs))
39 self._run("cmake --build {build} --target install -- DESTDIR={install}".format(**dirs))
H A Dperl.py19 output = self._run(cmd)
H A Dpython.py19 output = self._run(cmd)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/buildtools-cases/
H A Dhttps.py16 …self._run('env -i wget --debug --output-document /dev/null https://yoctoproject.org/connectivity.h…
20 …self._run('python3 -c \'import urllib.request; urllib.request.urlopen("https://yoctoproject.org/co…
H A Dgcc.py17 gcc_path = os.path.realpath(self._run("command -v gcc").strip())
28 for line in self._run('gcc -dumpspecs').splitlines():
H A Dbuild.py19 self._run('. %s/oe-init-build-env %s' % (corebase, testdir))
25 self._run('. %s/oe-init-build-env %s && bitbake virtual/libc' % (corebase, testdir))
H A Dsanity.py20 tool_path = os.path.realpath(self._run("command -v %s" % command).strip())
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/buildtools-docs-cases/
H A Dbuild.py16 self._run('git clone git://git.yoctoproject.org/yocto-docs %s' % testdir)
17 self._run('cd %s/documentation && make html' % testdir)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/target/
H A Dssh.py66 def _run(self, command, timeout=None, ignore_status=True): member in OESSHTarget
102 status, output = self._run(sshCmd, processTimeout, True)
129 return self._run(scpCmd, ignore_status=False)
137 (status, output) = self._run(scpCmd, ignore_status=warn_on_failure)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/
H A Dcase.py13 def _run(self, cmd): member in OESDKTestCase
41 output = self._run("echo $OECORE_TARGET_OS:$OECORE_TARGET_ARCH")
/OK3568_Linux_fs/kernel/Documentation/sphinx/
H A Dkernel_include.py74 return self._run()
76 def _run(self): member in KernelInclude
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdkext/
H A Dcase.py14 def _run(self, cmd): member in OESDKExtTestCase
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/utils/
H A Dtargetbuildproject.py39 def _run(self, cmd): member in TargetBuildProject
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Dnpm.py111 def _run(cmd): function
126 return _run(cmd)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/utils/
H A Dsdkbuildproject.py45 def _run(self, cmd): member in SDKBuildProject
/OK3568_Linux_fs/yocto/poky/documentation/test-manual/
H A Dintro.rst438 self._run('devtool add myapp %s' % directory)
440 self._run('devtool build myapp')
442 self._run('devtool reset myapp')
466 output = self._run(cmd)

12