Home
last modified time | relevance | path

Searched refs:testdir (Results 1 – 25 of 27) sorted by relevance

12

/OK3568_Linux_fs/buildroot/package/tcpreplay/
H A D0001-configure-ac-fix-without-libdnet.patch29 - for testdir in $trydnetdir /usr/local /opt/local /usr ; do
30 - if test -x ${testdir}/bin/dumbnet-config -a $founddnet = no ; then
31 - LDNETINC="$($testdir/bin/dumbnet-config --cflags)"
32 - LDNETLIB="$($testdir/bin/dumbnet-config --libs)"
33 - libdnet_version="$($testdir/bin/dumbnet-config --version) (libdumbnet)"
34 - founddnet=$testdir
44 + for testdir in $trydnetdir /usr/local /opt/local /usr ; do
45 + if test -x ${testdir}/bin/dumbnet-config -a $founddnet = no ; then
46 + LDNETINC="$($testdir/bin/dumbnet-config --cflags)"
47 + LDNETLIB="$($testdir/bin/dumbnet-config --libs)"
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/buildtools-cases/
H A Dbuild.py16 with tempfile.TemporaryDirectory(prefix='bitbake-build-', dir=self.tc.sdk_dir) as testdir:
19 self._run('. %s/oe-init-build-env %s' % (corebase, testdir))
20 with open(os.path.join(testdir, 'conf', 'local.conf'), 'ta') as conf:
25 self._run('. %s/oe-init-build-env %s && bitbake virtual/libc' % (corebase, testdir))
28 …while delay and (os.path.exists(testdir + "/bitbake.lock") or os.path.exists(testdir + "/cache/has…
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/cases/
H A Dbuildlzip.py15 with tempfile.TemporaryDirectory(prefix="lzip", dir=self.tc.sdk_dir) as testdir:
16 …tarball = self.fetch(testdir, self.td["DL_DIR"], "http://downloads.yoctoproject.org/mirror/sources…
19 dirs["source"] = os.path.join(testdir, "lzip-1.19")
20 dirs["build"] = os.path.join(testdir, "build")
21 dirs["install"] = os.path.join(testdir, "install")
23 subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT)
H A Dbuildcpio.py19 with tempfile.TemporaryDirectory(prefix="cpio-", dir=self.tc.sdk_dir) as testdir:
20 … tarball = self.fetch(testdir, self.td["DL_DIR"], "https://ftp.gnu.org/gnu/cpio/cpio-2.13.tar.gz")
23 dirs["source"] = os.path.join(testdir, "cpio-2.13")
24 dirs["build"] = os.path.join(testdir, "build")
25 dirs["install"] = os.path.join(testdir, "install")
27 subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT)
H A Dbuildepoxy.py23 with tempfile.TemporaryDirectory(prefix="epoxy", dir=self.tc.sdk_dir) as testdir:
24 …tarball = self.fetch(testdir, self.td["DL_DIR"], "https://github.com/anholt/libepoxy/releases/down…
27 dirs["source"] = os.path.join(testdir, "libepoxy-1.5.3")
28 dirs["build"] = os.path.join(testdir, "build")
29 dirs["install"] = os.path.join(testdir, "install")
31 subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT)
H A Dassimp.py25 with tempfile.TemporaryDirectory(prefix="assimp", dir=self.tc.sdk_dir) as testdir:
26 …tarball = self.fetch(testdir, self.td["DL_DIR"], "https://github.com/assimp/assimp/archive/v4.1.0.…
29 dirs["source"] = os.path.join(testdir, "assimp-4.1.0")
30 dirs["build"] = os.path.join(testdir, "build")
31 dirs["install"] = os.path.join(testdir, "install")
33 subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT)
H A Dbuildgalculator.py26 with tempfile.TemporaryDirectory(prefix="galculator", dir=self.tc.sdk_dir) as testdir:
27 …tarball = self.fetch(testdir, self.td["DL_DIR"], "http://galculator.mnim.org/downloads/galculator-…
30 dirs["source"] = os.path.join(testdir, "galculator-2.1.4")
31 dirs["build"] = os.path.join(testdir, "build")
32 dirs["install"] = os.path.join(testdir, "install")
34 subprocess.check_output(["tar", "xf", tarball, "-C", testdir], stderr=subprocess.STDOUT)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/
H A Dtargetcontrol.py33 self.testdir = d.getVar("TEST_LOG_DIR")
40 self.sshlog = os.path.join(self.testdir, "ssh_target_log.%s" % self.datetime)
41 sshloglink = os.path.join(self.testdir, "ssh_target_log")
109 self.qemulog = os.path.join(self.testdir, "qemu_boot_log.%s" % self.datetime)
120 bb.utils.mkdirhier(self.testdir)
121 self.qemurunnerlog = os.path.join(self.testdir, 'qemurunner_log.%s' % self.datetime)
125 …oe.path.symlink(os.path.basename(self.qemurunnerlog), os.path.join(self.testdir, 'qemurunner_log')…
159 bb.utils.mkdirhier(self.testdir)
161 qemuloglink = os.path.join(self.testdir, "qemu_boot_log")
H A Drunexported.py46 self.testdir = d.getVar("TEST_LOG_DIR")
50 self.sshlog = os.path.join(self.testdir, "ssh_target_log.%s" % self.datetime)
51 sshloglink = os.path.join(self.testdir, "ssh_target_log")
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/buildtools-docs-cases/
H A Dbuild.py15 … with tempfile.TemporaryDirectory(prefix='docs-tarball-build-', dir=self.tc.sdk_dir) as testdir:
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/buildroot/package/unixbench/
H A Dunixbench.mk31 $(UNIXBENCH_TARGET_DIR)/testdir
36 $(INSTALL) -m 644 $(@D)/UnixBench/testdir/* -t $(UNIXBENCH_TARGET_DIR)/testdir/
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/mdadm/files/
H A D0001-mdadm-skip-test-11spare-migration.patch33 for script in $testdir/$prefix $testdir/$prefix*[^~]
35 + if [ $script == "$testdir/11spare-migration" ];then
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dgo-ptest.bbclass36 testdir=`dirname $test`
38 install -d ${D}${PTEST_PATH}/$testdir
40 echo "run_test $testdir $testprog || RC=1" >> ${D}${PTEST_PATH}/run-ptest
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/dbus/dbus-glib/
H A Dtest-install-makefile.patch22 +testdir = $(datadir)/@PACKAGE@/tests
36 +testdir = $(datadir)/@PACKAGE@/tests/core
50 +testdir = $(datadir)/@PACKAGE@/tests/interfaces
/OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/testdir/
H A Dsort.src25 TESTDIR=${TESTDIR:-${HOMEDIR}/testdir}
135 testdir="${TESTDIR}" # the directory in which to run the test
231 prepcmd='${BINDIR}/dbprep ${testdir}/db.dat 10000'
233 parammsg='$param client processes. (filesize `cat ${testdir}/db.dat|wc -c` bytes)'
235 options='${testdir}/db.dat $param 0 1000' # $param clients;
245 testdir="shelldir"
299 cd $testdir # move to the test directory
/OK3568_Linux_fs/buildroot/utils/
H A Dscancpan726 my $testdir = q{support/testing/tests/package};
727 my $testname = $testdir . q{/test_} . lc $brname . q{.py};
827 make_path $testdir unless -d $testdir;
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/geoip/
H A Dgeoip_1.6.12.bb68 -e 's:SRCDIR=\\"$(top_srcdir)\\":SRCDIR=\\"$(testdir)\\":' \
71 if ! grep "^testdir = " ${S}/test/Makefile.am ; then
/OK3568_Linux_fs/kernel/tools/power/pm-graph/
H A Dbootgraph.py57 testdir = '' variable in SystemValues
81 self.testdir = datetime.now().strftime('boot-%y%m%d-%H%M%S')
161 cmdline += ' -o "%s"' % os.path.abspath(self.testdir)
984 sysvals.testdir = sysvals.setOutputFolder(val)
1094 if testrun and os.path.isdir(sysvals.testdir) and \
1097 call(cmd.format(os.environ['SUDO_USER'], sysvals.testdir), shell=True)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/samba/
H A Dsamba_4.14.14.bb185 testdir=${D}${datadir}/ctdb-tests/UNIT/$d
186 install -d $testdir
187 cp ${S}/ctdb/tests/UNIT/$d/*.sh $testdir
188 cp -r ${S}/ctdb/tests/UNIT/$d/scripts ${S}/ctdb/tests/UNIT/$d/stubs $testdir || true
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/busybox/busybox/
H A D0001-du-l-works-fix-to-use-145-instead-of-144.patch21 @@ -5,7 +5,7 @@ cd du.testdir
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/sdk/utils/
H A Dsdkbuildproject.py16 self.testdir = testpath
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/numactl/numactl/
H A DFix-the-test-output-format.patch45 @@ -9,12 +9,11 @@ testdir=`dirname "$0"`
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dwic.py1389 testdir = os.path.join(self.resultdir, 'wic-test-cp-dir')
1390 testsubdir = os.path.join(testdir, 'subdir')
1392 copy(testfile.name, testdir)
1395 runCmd("wic cp %s %s:1/ -n %s" % (testdir, images[0], sysroot))
1400 self.assertTrue(os.path.basename(testdir) in result.output)
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dtargetbuild.py112 self.testdir = testpath
/OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/
H A Dtdc.py648 for testdir in testdirs:
649 for root, dirnames, filenames in os.walk(testdir):

12