From: Yu Watanabe Date: Wed, 7 Nov 2018 05:56:20 +0000 (+0900) Subject: test: missing "die" X-Git-Tag: v240~393 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11d93952ea806de2b6e9fb381153115cccc7b5e8;p=thirdparty%2Fsystemd.git test: missing "die" Follow-up for a41ff38b0999fb83464309a29b8f39450b8d4b85. --- diff --git a/test/udev-test.pl b/test/udev-test.pl index a1c24f49b47..61bd3d703a1 100755 --- a/test/udev-test.pl +++ b/test/udev-test.pl @@ -1544,7 +1544,7 @@ sub udev_setup { # even if the parent directory has setgid bit enabled. chown (0, 0, $udev_dev) || die "unable to chown $udev_dev\n"; chmod (0755, $udev_dev) || die "unable to chmod $udev_dev\n"; - system("mknod", $udev_dev . "/null", "c", "1", "3") && "unable to create $udev_dev/null"; + system("mknod", $udev_dev . "/null", "c", "1", "3") && die "unable to create $udev_dev/null"; system("cp", "-r", "test/sys/", $udev_sys) && die "unable to copy test/sys";