bd1529
From 6a908a38135d050b7c271fdea9c061d7e7ad8ef7 Mon Sep 17 00:00:00 2001
bd1529
From: Yu Watanabe <watanabe.yu+github@gmail.com>
bd1529
Date: Tue, 23 Oct 2018 07:23:01 +0900
bd1529
Subject: [PATCH] test: create /dev/null in test-udev.pl
bd1529
bd1529
(cherry picked from commit a41ff38b0999fb83464309a29b8f39450b8d4b85)
bd1529
bd1529
Related: #1642728
bd1529
---
bd1529
 test/udev-test.pl | 3 ++-
bd1529
 1 file changed, 2 insertions(+), 1 deletion(-)
bd1529
bd1529
diff --git a/test/udev-test.pl b/test/udev-test.pl
bd1529
index 0433629c7c..a1c24f49b4 100755
bd1529
--- a/test/udev-test.pl
bd1529
+++ b/test/udev-test.pl
bd1529
@@ -1537,13 +1537,14 @@ sub udev_setup {
bd1529
         system("umount", $udev_tmpfs);
bd1529
         rmdir($udev_tmpfs);
bd1529
         mkdir($udev_tmpfs) || die "unable to create udev_tmpfs: $udev_tmpfs\n";
bd1529
-        system("mount", "-o", "rw,mode=755,nosuid,noexec,nodev", "-t", "tmpfs", "tmpfs", $udev_tmpfs) && die "unable to mount tmpfs";
bd1529
+        system("mount", "-o", "rw,mode=755,nosuid,noexec", "-t", "tmpfs", "tmpfs", $udev_tmpfs) && die "unable to mount tmpfs";
bd1529
 
bd1529
         mkdir($udev_dev) || die "unable to create udev_dev: $udev_dev\n";
bd1529
         # setting group and mode of udev_dev ensures the tests work
bd1529
         # even if the parent directory has setgid bit enabled.
bd1529
         chown (0, 0, $udev_dev) || die "unable to chown $udev_dev\n";
bd1529
         chmod (0755, $udev_dev) || die "unable to chmod $udev_dev\n";
bd1529
+        system("mknod", $udev_dev . "/null", "c", "1", "3") && "unable to create $udev_dev/null";
bd1529
 
bd1529
         system("cp", "-r", "test/sys/", $udev_sys) && die "unable to copy test/sys";
bd1529