mirror of
https://github.com/systemd/systemd.git
synced 2025-02-02 13:47:27 +03:00
tests: don't rely on underlying fs in udev-test, use tmpfs instead
Fixes: #457
This commit is contained in:
parent
0ffebd5abf
commit
2ce8d27b1f
@ -40,11 +40,11 @@ static int fake_filesystems(void) {
|
||||
const char *target;
|
||||
const char *error;
|
||||
} fakefss[] = {
|
||||
{ "test/sys", "/sys", "failed to mount test /sys" },
|
||||
{ "test/dev", "/dev", "failed to mount test /dev" },
|
||||
{ "test/run", "/run", "failed to mount test /run" },
|
||||
{ "test/run", "/etc/udev/rules.d", "failed to mount empty /etc/udev/rules.d" },
|
||||
{ "test/run", UDEVLIBEXECDIR "/rules.d","failed to mount empty " UDEVLIBEXECDIR "/rules.d" },
|
||||
{ "test/tmpfs/sys", "/sys", "failed to mount test /sys" },
|
||||
{ "test/dev", "/dev", "failed to mount test /dev" },
|
||||
{ "test/run", "/run", "failed to mount test /run" },
|
||||
{ "test/run", "/etc/udev/rules.d", "failed to mount empty /etc/udev/rules.d" },
|
||||
{ "test/run", UDEVLIBEXECDIR "/rules.d","failed to mount empty " UDEVLIBEXECDIR "/rules.d" },
|
||||
};
|
||||
unsigned int i;
|
||||
int err;
|
||||
|
@ -29,6 +29,7 @@ my $udev_bin_gdb = "gdb --args $udev_bin";
|
||||
my $udev_bin_strace = "strace -efile $udev_bin";
|
||||
my $udev_dev = "test/dev";
|
||||
my $udev_run = "test/run";
|
||||
my $udev_tmpfs = "test/tmpfs";
|
||||
my $udev_rules_dir = "$udev_run/udev/rules.d";
|
||||
my $udev_rules = "$udev_rules_dir/udev-test.rules";
|
||||
my $EXIT_TEST_SKIP = 77;
|
||||
@ -1412,6 +1413,12 @@ sub udev_setup {
|
||||
chown (0, 0, $udev_dev) || die "unable to chown $udev_dev\n";
|
||||
chmod (0755, $udev_dev) || die "unable to chmod $udev_dev\n";
|
||||
|
||||
system("umount", "$udev_tmpfs");
|
||||
system("rm", "-rf", "$udev_tmpfs");
|
||||
mkdir($udev_tmpfs) || die "unable to create udev_tmpfs: $udev_tmpfs\n";
|
||||
system("mount", "-o", "rw,mode=755,nosuid,noexec,nodev", "-t", "tmpfs", "tmpfs", "$udev_tmpfs") && die "unable to mount tmpfs";
|
||||
system("cp", "-r", "test/sys/", "$udev_tmpfs") && die "unable to copy test/sys";
|
||||
|
||||
system("rm", "-rf", "$udev_run");
|
||||
}
|
||||
|
||||
@ -1545,6 +1552,8 @@ print "$error errors occurred\n\n";
|
||||
# cleanup
|
||||
system("rm", "-rf", "$udev_dev");
|
||||
system("rm", "-rf", "$udev_run");
|
||||
system("umount", "$udev_tmpfs");
|
||||
system("rm", "-rf", "$udev_tmpfs");
|
||||
|
||||
if ($error > 0) {
|
||||
exit(1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user