[PATCH] make perm and major:minor test errors be reported properly.

This commit is contained in:
greg@kroah.com 2004-03-12 17:19:50 -08:00 committed by Greg KH
parent fa19f1811c
commit b9a88fe756

View File

@ -596,6 +596,7 @@ sub run_test {
if ($wrong == 1) {
printf "expected permissions are: %i:%i:%#o\n", $1, $2, oct($3);
printf "created permissions are : %i:%i:%#o\n", $uid, $gid, $mode & 07777;
$error++;
}
}
@ -614,6 +615,7 @@ sub run_test {
if ($wrong == 1) {
printf "expected major:minor is: %i:%i\n", $1, $2;
printf "created major:minor is : %i:%i\n", $major, $minor;
$error++;
}
}