diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2016-04-06 11:51:38 +0200 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2016-04-06 11:51:38 +0200 |
commit | 600101ca281a5fbcaf6b26c03de8092563d58099 (patch) | |
tree | d2bc5d0ed75df6fc41af82b881c7cb55d502b3f0 /src | |
parent | 354362c46bf436bb47fe6bd4be99321406119fa2 (diff) | |
parent | 21d9e3f339659c82db950ff2b4c6b81956cfa917 (diff) |
Merge pull request #2969 from evverx/udev-test-dont-rely-on-underlying-fs-2
tests: don't rely on the underlying fs in test-udev (v2)
Diffstat (limited to 'src')
-rw-r--r-- | src/test/test-udev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-udev.c b/src/test/test-udev.c index 64ef08652c..8522e9925c 100644 --- a/src/test/test-udev.c +++ b/src/test/test-udev.c @@ -41,7 +41,7 @@ static int fake_filesystems(void) { const char *error; } fakefss[] = { { "test/tmpfs/sys", "/sys", "failed to mount test /sys" }, - { "test/dev", "/dev", "failed to mount test /dev" }, + { "test/tmpfs/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" }, |