| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdkext/cases/ |
| H A D | devtool.py | 40 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 D | buildproject.py | 46 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 D | targetbuild.py | 60 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 D | sshcontrol.py | 47 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 D | buildcpio.py | 31 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 D | buildgalculator.py | 38 …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 D | gcc.py | 33 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 D | buildlzip.py | 34 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 D | buildepoxy.py | 35 …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 D | assimp.py | 37 … 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 D | perl.py | 19 output = self._run(cmd)
|
| H A D | python.py | 19 output = self._run(cmd)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/buildtools-cases/ |
| H A D | https.py | 16 …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 D | gcc.py | 17 gcc_path = os.path.realpath(self._run("command -v gcc").strip()) 28 for line in self._run('gcc -dumpspecs').splitlines():
|
| H A D | build.py | 19 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 D | sanity.py | 20 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 D | build.py | 16 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 D | ssh.py | 66 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 D | case.py | 13 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 D | kernel_include.py | 74 return self._run() 76 def _run(self): member in KernelInclude
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdkext/ |
| H A D | case.py | 14 def _run(self, cmd): member in OESDKExtTestCase
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/utils/ |
| H A D | targetbuildproject.py | 39 def _run(self, cmd): member in TargetBuildProject
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/ |
| H A D | npm.py | 111 def _run(cmd): function 126 return _run(cmd)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/utils/ |
| H A D | sdkbuildproject.py | 45 def _run(self, cmd): member in SDKBuildProject
|
| /OK3568_Linux_fs/yocto/poky/documentation/test-manual/ |
| H A D | intro.rst | 438 self._run('devtool add myapp %s' % directory) 440 self._run('devtool build myapp') 442 self._run('devtool reset myapp') 466 output = self._run(cmd)
|