Home
last modified time | relevance | path

Searched refs:temp_dir (Results 1 – 10 of 10) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/wolfssl/files/
H A Drun-ptest6 temp_dir=$(mktemp -d /tmp/wolfss_temp.XXXXXX)
7 echo "Wolfssl ptest logs are stored in ${temp_dir}/${log_file}"
9 ./test/unit.test > "$temp_dir/$log_file" 2>&1
15 MAGIC_SENTENCE=$(grep "unit_test: Success for all configured tests." $temp_dir/$log_file)
24 NUM_FAILS=$(grep -c "Failed" $temp_dir/$log_file)
/openbmc/openbmc/poky/bitbake/lib/prserv/
H A Dtests.py79 self.temp_dir = tempfile.TemporaryDirectory(prefix='bb-prserv')
80 self.addCleanup(self.temp_dir.cleanup)
110 dbfile = os.path.join(self.temp_dir.name, "testtable.sqlite3")
149 self.temp_dir = tempfile.TemporaryDirectory(prefix='bb-prserv')
150 self.addCleanup(self.temp_dir.cleanup)
152 dbfile = os.path.join(self.temp_dir.name, "prtest-basic.sqlite3")
265 self.temp_dir = tempfile.TemporaryDirectory(prefix='bb-prserv')
266 self.addCleanup(self.temp_dir.cleanup)
268 dbfile2 = os.path.join(self.temp_dir.name, "prtest-upstream2.sqlite3")
272 dbfile1 = os.path.join(self.temp_dir.name, "prtest-upstream1.sqlite3")
[all …]
/openbmc/openbmc/poky/meta-selftest/lib/oeqa/runtime/cases/
H A Ddnf_runtime.py11 cls.temp_dir = tempfile.TemporaryDirectory(prefix="oeqa-remotefeeds-")
20 cls.temp_dir.cleanup()
35 temp_file = os.path.join(self.temp_dir.name, 'tmp.repo')
/openbmc/u-boot/scripts/kconfig/tests/
H A Dconftest.py58 with tempfile.TemporaryDirectory() as temp_dir:
63 os.path.join(temp_dir, '.config'))
69 cwd=temp_dir,
90 with open(os.path.join(temp_dir, out_file)) as f:
/openbmc/qemu/scripts/
H A Dqcow2-to-stdout.py93 temp_dir = tempfile.mkdtemp()
94 pid_file = os.path.join(temp_dir, "pid")
95 raw_file = os.path.join(temp_dir, "raw")
122 os.rmdir(temp_dir)
/openbmc/openbmc/poky/scripts/lib/devtool/ide_plugins/
H A D__init__.py82 temp_dir = "TEMP_DIR=/tmp/gdbserver_%s; " % self.id_pretty
83 gdbserver_cmd_start = temp_dir
90 gdbserver_cmd_stop = temp_dir
/openbmc/openbmc/poky/bitbake/lib/hashserv/
H A Dtests.py71 return os.path.join(self.temp_dir.name, "db%d.sqlite" % self.server_index)
96 self.temp_dir = tempfile.TemporaryDirectory(prefix='bb-hashserv')
97 self.addCleanup(self.temp_dir.cleanup)
1125 return "unix://" + os.path.join(self.temp_dir.name, 'sock%d' % server_idx)
1444 return "unix://" + os.path.join(self.temp_dir.name, 'sock%d' % server_idx)
1450 os.makedirs(os.path.join(self.temp_dir.name, self.DEEP_DIRECTORY), exist_ok=True)
1451 … return "unix://" + os.path.join(self.temp_dir.name, self.DEEP_DIRECTORY, 'sock%d' % server_idx)
1502 …return "sqlite+aiosqlite:///%s" % os.path.join(self.temp_dir.name, "db%d.sqlite" % self.server_ind…
/openbmc/qemu/python/qemu/machine/
H A Dmachine.py938 def temp_dir(self) -> str: member in QEMUMachine
953 return self.temp_dir
/openbmc/u-boot/fs/ext4/
H A Dext4_common.c487 char *temp_dir = NULL; in ext4fs_update_parent_dentry() local
611 temp_dir = (char *)dir; in ext4fs_update_parent_dentry()
612 temp_dir = temp_dir + sizeof(struct ext2_dirent); in ext4fs_update_parent_dentry()
613 memcpy(temp_dir, filename, strlen(filename)); in ext4fs_update_parent_dentry()
/openbmc/qemu/tests/functional/qemu_test/
H A Dtestcase.py366 self.log.debug('QEMUMachine "%s" temp_dir: %s', name, vm.temp_dir)