mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 01:19:23 +01:00
t-runner: Remove debug statements
This commit is contained in:
parent
6b5963f43b
commit
bc22e66df5
@ -158,13 +158,9 @@ static void prepare_sandbox(void)
|
|||||||
struct stat st;
|
struct stat st;
|
||||||
|
|
||||||
if (lstat(mount_table[i].target, &st) < 0) {
|
if (lstat(mount_table[i].target, &st) < 0) {
|
||||||
l_debug("Creating %s\n", mount_table[i].target);
|
|
||||||
mkdir(mount_table[i].target, 0755);
|
mkdir(mount_table[i].target, 0755);
|
||||||
}
|
}
|
||||||
|
|
||||||
l_debug("Mounting %s to %s\n", mount_table[i].fstype,
|
|
||||||
mount_table[i].target);
|
|
||||||
|
|
||||||
if (mount(mount_table[i].fstype,
|
if (mount(mount_table[i].fstype,
|
||||||
mount_table[i].target,
|
mount_table[i].target,
|
||||||
mount_table[i].fstype,
|
mount_table[i].fstype,
|
||||||
@ -176,23 +172,17 @@ static void prepare_sandbox(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; dev_table[i].target; i++) {
|
for (i = 0; dev_table[i].target; i++) {
|
||||||
l_debug("Linking %s to %s\n", dev_table[i].linkpath,
|
|
||||||
dev_table[i].target);
|
|
||||||
|
|
||||||
if (symlink(dev_table[i].target, dev_table[i].linkpath) < 0)
|
if (symlink(dev_table[i].target, dev_table[i].linkpath) < 0)
|
||||||
l_error("Failed to create device symlink: %s",
|
l_error("Failed to create device symlink: %s",
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
}
|
}
|
||||||
|
|
||||||
l_debug("Creating new session group leader");
|
|
||||||
setsid();
|
setsid();
|
||||||
|
|
||||||
l_debug("Setting controlling terminal");
|
|
||||||
ioctl(STDIN_FILENO, TIOCSCTTY, 1);
|
ioctl(STDIN_FILENO, TIOCSCTTY, 1);
|
||||||
|
|
||||||
for (i = 0; config_table[i]; i++) {
|
for (i = 0; config_table[i]; i++) {
|
||||||
l_debug("Creating %s", config_table[i]);
|
|
||||||
|
|
||||||
if (mount("tmpfs", config_table[i], "tmpfs",
|
if (mount("tmpfs", config_table[i], "tmpfs",
|
||||||
MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME,
|
MS_NOSUID|MS_NOEXEC|MS_NODEV|MS_STRICTATIME,
|
||||||
"mode=0755") < 0)
|
"mode=0755") < 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user